Everything posted by LMS
-
LML Installed mods do not work
What does not work? There are some crashes/errors with some of your LSPDFR plugins, but not sure how this is related to LML.
-
Interacting with drug packages
Sorry, I thought you were perhaps trying to recreate the effect. I do not think the information is stored anywhere, they are just custom game pickups that do not do anything. Since we do not expose the pickup handle, I think the best way would be to scan the area for objects of a known type (drug package) and then infer that the player collected them if they no longer exist.
-
Interacting with drug packages
In that case you probably need to create a pickup with that model for it to work.
-
LML loading car Pack, but only loads one Vehicle
The wiki has a lot of information on how to use install.xml: https://www.lcpdfr.com/lml/wiki/
-
LML loading car Pack, but only loads one Vehicle
LML will try to make an effort and convert mods that do not have official installation instructions, but that does not always work out. You might have to manually fix up the install.xml.
-
SetPedAsACop (Ped) Questiion
Makes perfect sense, but I presume that plugin relies on the model and/or relationship group to determine it. In that case, perhaps your other model workaround is the best if you need that plugin.
-
Interacting with drug packages
If you manually spawn the drug package model, can you still collect it? I would assume, though. Perhaps there is no record being kept and it is just how that object works.
-
Is LCPDFR still being developed or is it dead? (Also some recommendations)
Realistically tag me again during summer break, before that I will have virtually no time to spare.
-
SetPedAsACop (Ped) Questiion
What happens for cop models?
-
SetPedAsACop (Ped) Questiion
This API call is to make LSPDFR officially recognize them as a cop internally. If you spawn one yourself, there will still be certain game mechanics and LSPDFR mechanics that pick them up as a cop due to their relationship group and ped type. But the partner approach should still work. What have you tried?
-
Load individual textures into existing YTDs
Could you please explain what you mean exactly (and show me the page that mentions it)? Generally speaking, any texture can be overriden.
-
Cannot Start Game with LML
Thanks. I will take a look at the crash, but it might take a few days or weeks before I get a chance.
-
Making LML work with _lml
Then please attach your vfs.log and also check eventvwr.exe ->Windows Logs -> Application and look for GTA 5 related entries.
-
Making LML work with _lml
You cannot use LML if you rename the files like that. Restore the original names after you are done troubleshooting.
-
Cannot Start Game with LML
Can you attach your vfs.log and also check eventvwr.exe ->Windows Logs -> Application and look for GTA 5 related entries?
-
[SOLVED] My callout is never dispatched
Do you register your callout with LSPDFR? An example can be seen here: https://github.com/LMSDev/LSPDFR-API/blob/590fcf80b98fe7b74052563c175fcfd4a61abbbb/API Examples/DemoProject/DemoProject/Main.cs#L47
-
[Suggestion] IsPedKneeled()
Should be easy enough to add 🙂
-
[Suggestion] GetPlayerWalkStyle
Sure, that seems simple enough!
-
[BUG REPORT] Locker menu issues - duplicate menu, props not disappearing
No worries about the necro. I will revisit it and see if I can reproduce and then fix. Any guidance on how to make it appear consistently?
-
Lspdfr windows 10
Windows 10 will work fine. In general, if your computer can play GTA 5, you can also play LSPDFR. It is good to aim for a bit of extra headroom though as certain mods may slow down your game a little. So, you ideally want to play GTA 5 with settings that allow for a very smooth experience without mods.
-
LML Crashing when opening mods section
Try launching it as admin. It might be that you installed GTA in a location that needs elevated permissions.
-
System.IO.FileNotFoundException on a Plugin I Created
The problem is that your distance check uses a negative number for comparison. It might seem intuitive at first, but that is not how distances work. If you are comparing the positions of two objects in this context, you are measuring the size of the displacement, i.e., the distance magnitude. This can never be negative. If there was a direction involved, it could be, though. If you care about the math, in three-dimensional Euclidean space the distance between two points is defined as seen below. Not only does it use the positive square root, but squaring the possibly negative numbers inside the square root also always yields positive numbers.
-
System.IO.FileNotFoundException on a Plugin I Created
It looks like you might be targeting .NET 6.0. Make sure your project targets .NET framework, for instance 4.7 instead.
-
how to apply for staff
We usually reach out to people we think would make a good addition to the Community Team. Occasionally, we have more open applications but those would be announced.
-
Mods are downloaded but they are not loaded in the game
Script mods are generally not supposed to be loaded via LML. Move those to their actual folder and try again.