/ControllerReload

Mod for GTA V that allows you to reload all SHVDN scripts by using a controller button combination

Primary LanguageC#MIT LicenseMIT

ControllerReload
GitHub Actions Patreon PayPal Discord

ControllerReload is a simple script for Grand Theft Auto V that allows you to reload the scripts loaded in ScriptHookVDotNet by pressing a specific number of controller buttons. It reloads the scripts by simulating the Reload() console command. You can configure the numbers of buttons that you need to press.

Download

Installation

Copy all of the files from the compressed file to your scripts directory.

Usage

After installing the Mod, you can use the following button combination to reload your scripts:

  • Xbox 360, One and Series X|S Controller: RB and B
  • DualShock 3 and DualShock 4: R1 and Circle
  • Wii U Gamepad, Joy Cons and Pro Controllers: R and A

You can configure the buttons that you need to press via ControllerReload.json (if the file does not exists, run the mod at least once).

When you open the file, you will see something like this:

{
  "controls": [
    "FrontendRb",
    "FrontendCancel"
  ]
}

To change the buttons, specify any of the names in the Control enum. For example, to use LB + RB + Y (L1 + R1 + Triangle):

{
  "controls": [
    "FrontendLb",
    "FrontendRb",
    "FrontendY"
  ]
}