├── .github └── workflows │ └── decrypt.yml ├── .gitignore ├── README.md ├── package.json ├── src ├── config.js ├── index.js ├── lib │ └── joaat.js ├── scripts │ ├── decrypt.js │ ├── postdecrypt.js │ └── predecrypt.js ├── static │ └── jobs_dictionary.json └── utils │ └── index.js ├── tunables-pcros-decrypted.json ├── tunables-pcros-encrypted.json ├── tunables-ps3.json ├── tunables-ps4-decrypted.json ├── tunables-ps4-encrypted.json ├── tunables-ps5-decrypted.json ├── tunables-ps5-encrypted.json ├── tunables-xbox360.json ├── tunables-xboxone-decrypted.json ├── tunables-xboxone-encrypted.json ├── tunables-xboxsx-decrypted.json └── tunables-xboxsx-encrypted.json /.github/workflows/decrypt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/.github/workflows/decrypt.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/joaat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/lib/joaat.js -------------------------------------------------------------------------------- /src/scripts/decrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/scripts/decrypt.js -------------------------------------------------------------------------------- /src/scripts/postdecrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/scripts/postdecrypt.js -------------------------------------------------------------------------------- /src/scripts/predecrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/scripts/predecrypt.js -------------------------------------------------------------------------------- /src/static/jobs_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/static/jobs_dictionary.json -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /tunables-pcros-decrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-pcros-decrypted.json -------------------------------------------------------------------------------- /tunables-pcros-encrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-pcros-encrypted.json -------------------------------------------------------------------------------- /tunables-ps3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-ps3.json -------------------------------------------------------------------------------- /tunables-ps4-decrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-ps4-decrypted.json -------------------------------------------------------------------------------- /tunables-ps4-encrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-ps4-encrypted.json -------------------------------------------------------------------------------- /tunables-ps5-decrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-ps5-decrypted.json -------------------------------------------------------------------------------- /tunables-ps5-encrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-ps5-encrypted.json -------------------------------------------------------------------------------- /tunables-xbox360.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-xbox360.json -------------------------------------------------------------------------------- /tunables-xboxone-decrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-xboxone-decrypted.json -------------------------------------------------------------------------------- /tunables-xboxone-encrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-xboxone-encrypted.json -------------------------------------------------------------------------------- /tunables-xboxsx-decrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-xboxsx-decrypted.json -------------------------------------------------------------------------------- /tunables-xboxsx-encrypted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorredx/GTAV-Tunables/HEAD/tunables-xboxsx-encrypted.json --------------------------------------------------------------------------------