Everything posted by LMS
-
How do I disable the coffee cup spawn?
The ini has not been updated and as such is missing new settings (those are logged as warning to tell you what's available to set up). The settings for the checkpoint are: CheckpointControlRotate // The key to trigger rotating during a checkpoint control setup. CheckpointControlStart CheckpointControlUp CheckpointControlDown CheckpointControlLeft CheckpointControlRight CheckpointControlConfirm Yes, as with all keys, there can be a modifier.
-
LCPDFR 1.0c Hotfix
I tried everything I can and it now has more safety checks than a NASA rocket, but I can't promise anything. I was not able to reproduce the problem on my end.
-
How do I disable the coffee cup spawn?
[Keybindings] DrinkCoffee=None
-
LCPDFR Does not support other plugins?
Well I can't find the line in your logfile. Can you attach the ScriptHookDotNet.log?
-
LCPDFR 1.0c Hotfix
No need to blame you, we did not update the documentation yet :P Ah okay thanks, will look into that.
-
LCPDFR 1.0c Hotfix
Add it under "Pursuits". Use "True" to disable. Definitely something we will explore in the future. Hold down the key after the coffee has spawned to sip - as long as you keep the keys down you will drink. As for rotating, try holding down "CheckpointControlRotate" (default is LControlKey), this will allow you to rotate the vehicle. Also holding down LShift (hardcoded at the moment) will allow you more accurate placement.
-
LCPDFR Does not support other plugins?
Does it really say "does not support third party plugins"? Or does it rather say "A third party plugin has been shut down due to an error"? If the latter, try to reproduce issue and post log again. That should contain the necessary details.
-
Callout text falls off screen.
Do you run it in windowed or fullscreen mode?
- API Reference
-
LCPDFR 1.0c Hotfix
Regarding the checkpoint I'd like to add, since this is a very new and experimental feature, we'd especially like to ask for you opinion on it.
-
Desktop Not Booting To OS HELP!
Use your (or burn one) Windows 8.1 disk to restore the possibly damaged operation system.
-
LCPDFR 1.0b Crashing with weird recording in the log
That is not really an issue. It means that on GTA IV it cannot use certain natives, because they are not available (only on EFLC). But it is not responsible for crashes of any kind.
-
LCPDFR 1.0b Crashing with weird recording in the log
Hello, crashes logged inside AdvancedHook are general GTA IV crashes we have no control over. While they can be random they can also be caused by models. So maybe removing one or all of your models might help. LMS
-
What does it called?
Malaysia?
-
Fixing the door bug in older ELS
http://blog.lms-dev.com/gta-iv/els-8-behind-the-scenes/ - The necessary patches are done in memory by AdvancedHook and invoked by ELS.
-
LCPDFR Loader
Probably missing C++ redists for AdvanceHook. Run diagnostics tool to fix.
-
"LCPDMain Exception: Culture is not supported."
Looks to me you still got 0.95 installed and running 1.0 too. Remove the older one.
-
Unusually long loading screen
Just checked, there is no real crash occuring. But given your system specs, I think it's a little too low to run it properly.
-
ELS V8 Preview MP testing
It still uses the same car extra system, no need to worry, you don't have to update much. I may write an article explaining how I managed to fix it on my blog soon.
-
Unusually long loading screen
Please post the LCPDFR.log logfile. I suspect something went wrong during PD initialization and hence the loading never finished. This is mostly because your system is not capable of handling the spawning, so posting your specs might help as well.
-
Blue/Red Reverse Lights
I remember the reversing lights color being hardcoded into the game, so you can't change them via the model. You'd need to change the specific code locations to change the color. An example how it could look for the headlights: '>
-
Voice Activated Commands
Hm memory leaks shouldn't occur in a managed environment. Just make sure you free it properly on shutdown, otherwise it might cause issues.
-
Voice Activated Commands
I actually did some testing with Windows Speech Recognition a long time ago on Vista, but it had its issues. I might give it a shot again though, maybe I can get it into LCPDFR. Thanks for sharing.
-
How to change the traffic light's light up color
A sprite is rather a 2D image, the coronas are lights. And yes, you can reverse it perfectly fine, just like any other software. May I ask what you need this for?
-
How to change the traffic light's light up color
It appears to be black because I decided to increase the intensity of the light which also increases the dispersion, so it no longer looks like a small solid light. The lights are coronas and drawn the same way the headlights, brakelights etc. are. The code is located in the GTAIV.exe/EFLC.exe and can be opened using a disassembler or a debugger at runtime. But if you just started getting into C++ it's a vain project, you need to have at least basic assembler and reverse engineering skills.