Jump to content

WesternGamer

Recognized Creator
  • Joined

  • Last visited

Everything posted by WesternGamer

  1. @DirePanda I did find the issue for that and it is fixed in my fork, you will unfortunately have to compile it as there is no precompiled version. An alternative is to put only the images in a separate folder and then select that folder.
  2. For anyone that finds this, you need to do something with TLS (Thread Local Storage) before calling this function.
  3. Since I am seeing this solution being common, I added this solution to my troubleshooting guide.
  4. WesternGamer commented on LMS's comment on a file in Red Dead Redemption 2 Tools
    @Pawan1729Here it is: https://www.nexusmods.com/reddeadredemption2/mods/1688 You need to have lml installed and dinput8.dll installed.
  5. WesternGamer commented on LMS's comment on a file in Red Dead Redemption 2 Tools
    If you need to use online assets, there is an alternative to version.dll.
  6. @DragonWings Yes it will still work normally. Installing ScriptHookRDR2 won't affect LML as LML doesn't interact with ScriptHookRDR2.
  7. WesternGamer commented on LMS's comment on a file in Red Dead Redemption 2 Tools
    @WaitWhat21 Asi loader doesn't make beeps as it would be very annoying after a while.
    • 1,228 downloads
    • Version 1.0.1
    A mod to replace the normal lantern with the lantern that Arthur uses in the first mission. Just put the asi file in the game directory. Some antiviruses flag this as a virus. This is a false positive. Please add this mod to the exclusions list if you use any of the following: Cylance, MaxSecure, and SecureAge. Source code: bool LanternGiven = false; void Update() { Hash currentWeapon = NULL; WEAPON::GET_CURRENT_PED_WEAPON(PLAYER::PLAYER_PED_ID(), &currentWeapon, NULL, 0, NULL); if (currentWeapon == 0x4A59E501) { WEAPON::GIVE_WEAPON_TO_PED(PLAYER::PLAYER_PED_ID(), 0xF62FB3A3, 0, true, true, -1, false, 0.5, 1.0, 0x2CD419DC, true, 0.5, NULL); WEAPON::SET_CURRENT_PED_WEAPON(PLAYER::PLAYER_PED_ID(), 0xF62FB3A3, true, 0, NULL, NULL); LanternGiven = false; } if (currentWeapon == 0xA2719263 && LanternGiven == false) { WEAPON::GIVE_WEAPON_TO_PED(PLAYER::PLAYER_PED_ID(), 0x4A59E501, 0, false, true, -1, false, 0.5, 1.0, 0x2CD419DC, true, 0.5, NULL); LanternGiven = true; } }
  8. @Gunter Severloh Glad to see that you resolved your own issue and provided a solution! May add this as an option to my post. Seeing that you had to downgrade, you probably have a mod(s) that doesn't work with the latest version of the game.
  9. @Gunter Severloh Did you install Asi Loader (version.dll) by LMS? If not, it is required to load mods in the first place. You can find it here: https://www.rdr2mods.com/downloads/rdr2/tools/9-rdr-2-asi-loader/
  10. @Gunter Severloh Try removing dinput8.dll. If that doesn't work, remove all mods then add one at a time and test.
  11. WesternGamer commented on LMS's comment on a file in Red Dead Redemption 2 Tools
    @DkFaceDirk This issue has been known for a long time, and it is definitely not an issue with the mods themselves.
  12. WesternGamer commented on LMS's comment on a file in Red Dead Redemption 2 Tools
    @ltcolblackfire If you have outfit changer or Lenny's Simple Trainer installed, you will need to reinstall version.dll as you accidentally overwritten the asi loader.
  13. @BarnabyJones Also, I think the law mod should go after the VESTIGIA mod.
  14. @BarnabyJones It loads from top to bottom.
  15. Thanks for this mod! Going to test the tool later!
  16. @R3AP3R What version of the game are you using?
  17. WesternGamer commented on LMS's comment on a file in Red Dead Redemption 2 Tools
    @IgnitedBread It doesn't beep as it would be annoying every time you start the game. That is why there are no beeps by design.
  18. @pointerboy I am not sure if you were aware, but I uploaded a similar mod yesterday:
    • 4,193 downloads
    • Version 1.1.0
    A lightweight mod that slows the game down with a press of a button. Someone told me to create this mod because two other similar mods used outdated scripthooks. Installation Just drop the .asi file into the RDR2 game directory. Config This mod generates the config file automatically after you run the game with the mod for the first time. The key to activate slow motion can be changed here and the speed can also be changed. Antivirus Disclaimer Some antiviruses (Specifically MaxSecure and SecureAge APEX) may flag the mod as a virus. This is a false positive. If your antivirus keeps deleting the .asi file, please add it to the exclusions. Config File Error If you get an error that says: This usually means the game folder has the incorrect permissions set up. To fix this, follow these directions: 1. Find your game folder. For steam users, the default location is "C:\Program Files (x86)\Steam\steamapps\common\Red Dead Redemption 2" 2. Right click on the Red Dead Redemption 2 folder and click properties. 3. Go to the security tab on the window that pops up. 4. Click Advanced. 5. Set the owner of the folder to your windows username by clicking change near the top. 6. Click apply, then close and open the window. 7. Find CREATOR OWNER in the list and double click on it. 8. Check the Full Control box and click OK. 9. Repeat steps 7 and 8 for Users and Administrators. 10. Click OK and close all other related windows. You are now done! If you get no error and the mod does not seem to work at all, the mod is not being loaded. Make sure that you have scripthook and an asi loader installed properly. Also make sure that you had extracted the files for those mods and this mod. Open Source This mod is open source and uses the MIT licence.