Jump to content

LMS

Administrators
  • Posts

    918
  • Joined

  • Last visited

  • Days Won

    301

 Content Type 

Profiles

Forums

Gallery

Downloads

News Articles

Modding Wiki

RDR2 Native Database

RDR2 Native Parameters

RDR2 Player Clothes Database

RDR2 Ped Voices Database

RDR2 Ped Speech Lines

RDR Modding Tutorials

RDR2 Ped Model Database

RDR2 Animations Database

RDRFR Changelog

RDRFR Installation Guide

RDRFR Features

RDRFR Settings

LML User Contributions

Everything posted by LMS

  1. Please provide me with the exact coordinates and I can verify.
  2. 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.
  3. 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
  4. 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".
  5. 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?
  6. Thank you and no worries, it's not about the formatting 🙂
  7. Feel free to post the list here or add it to our Wiki 🙂
  8. 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.
  9. You need to change their actual relationship group or change the relationship between groups.
  10. This is not supported by the API currently, but if we have any news on translations in the future, I will let you know 🙂
  11. 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.
  12. 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.
  13. Please try with the update from a few minutes ago, it hopefully no longer crashes.
  14. 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.
  15. 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.
  16. 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.
  17. 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.
  18. It is included in the latest update from today 🙂
  19. This seems to be a mirror that is alive: https://github.com/stianhje/rdr3-decompiled-scripts.1232
  20. That might be a game mechanic limitation that is hard to bypass unfortunately.
  21. Do you know the "reason" why you cannot lasso them? Is it because they are friendlies or something? Depending on what it is, it might be easier or harder to remove.
  22. If it spawns in a mission it is almost guaranteed that you can spawn it via scripts. Have a look at that particular mission script and see if you can narrow it down.
  23. 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.
  24. I don't think I added an outfit selector for bodyguards, but I can put it in the next update.
  25. 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.
×
×
  • Create New...