Everything posted by LMS
-
Locked Doors
Please provide me with the exact coordinates and I can verify.
-
Locked Doors
Whereabouts are these doors? I can check myself and see if they work for me. Some doors are constantly being relocked by the game scripts, which could complicate matters. The sheriff door in Valentine's is one example, early on in the game it is always locked for you - we had to work around that.
-
Locked Doors
That is the correct native, first param is the door hash, second is the state. 0 = unlocked 1 = locked 2 = locked, but can be kicked in
-
Making NPCs speak..? [SOLVED]
You can use the native below. It needs a struct as argument though, which you need to set up properly first. Like this: var1[0] = speechline; var1[1] = voice; // Can be 0 var1[2] = 0; // uparam5 var1[3] = 291934926; // iparam11 var1[4] = target; // Ped target var1[5] = NativeFunction.Call<int>(0x10FAB35428CCC9D7); // network is game in progress var1[6] = 1; // bool at the end? Then you can use it with lines like "GENERIC_THANKS" or "GOING_WELL".
-
How kill "non-killable" NPCs?
I have not messed with gang members, but to be able to shoot cops it worked when changing relationship between REL_PLAYER and REL_COP or by changing the player relationship group or the cop relationship group via SET_PED_RELATIONSHIP_GROUP_HASH. Have you tried that one?
-
IMAP Hashes (Spoilers) [solved]
Thank you and no worries, it's not about the formatting 🙂
-
IMAP Hashes (Spoilers) [solved]
Feel free to post the list here or add it to our Wiki 🙂
-
How to check if the player is under a roof
You could try checking if the player is in any interior combined with probing the ground Z slightly above the player and see if it returns a position below or above the player.
-
How kill "non-killable" NPCs?
You need to change their actual relationship group or change the relationship between groups.
-
RDRFR 0.1 API
This is not supported by the API currently, but if we have any news on translations in the future, I will let you know 🙂
-
How kill "non-killable" NPCs?
It depends on the NPC. For most of them, changing yours or their relationship group or the relationship between groups is enough. For some, such as kids, it requires (at least according to my testing) some binary patching.
-
Director Mode
It could certainly mean that a director mode is being worked on. The code has had references to parsing this variable in previous builds too, so perhaps we are starting to see datafiles actually using it. I did not verify whether this flag has occurred for previous data files, though.
-
Mods and scripthook incompatible with new version
Please try with the update from a few minutes ago, it hopefully no longer crashes.
-
Lenny's Simple Trainer
Thanks for the reports of the broken features so far, please keep reporting and I will address them this week. When you go to the spawn menu, you should be able to cycle left and right per model.
- 1,354 comments
- 25 reviews
-
Lenny's Simple Trainer
Version.dll, which is the ASI loader, will load any file that does not rely on a ScriptHook (so No Bullet Trails and No Hitmarker will work). Other mods will not work. P.S. EasyHook is something entirely unrelated in this case and is a generic hooking library.
- 1,354 comments
- 25 reviews
-
Lenny's Simple Trainer
I've released an update for LST for the latest game version. I did not test everything but it should hopefully all work fine again, If not, let me know in the comments.
- 1,354 comments
- 25 reviews
-
-
-
- 2
-
-
Mods and scripthook incompatible with new version
I've released an update for LST for the latest game version. I did not test everything but it should hopefully all work fine again, If not, let me know in the comments.
- Change an NPC's outfit?
- Train configurations in RDR2
- Making NPCs "lasso-able"?
- Making NPCs "lasso-able"?
- Train configurations in RDR2
-
[Mod Request] Remove Shining Effect from Pickup Items
I'd say it's it relatively easy (a few hours) if you know what you are doing and nearly impossible if you don't know as I assume you need to remove some game code that renders the effect. That is, if it is rendered explicitly. Would be interesting to see if there were any side effects to it.
- Change an NPC's outfit?
-
RDRFR 0.1 Now Available!
An update to address most of the bugs (alongside a new version of RPH which should fix the horse callout issues) will be available soon. As for future plans, we will have to see how we can best divide our resources between our projects.