/*
Script Made By DarkKiritoV
gta_money.gpc
Intructions:
Go onto your favorite AFK Deathmatch Playlist. DO NOT START IT!!
Make sure your cursor is at top opion of the options which should be the time of day.
Theen start the script!
Right on DPad + A to turn on and off the mod.
Extra info:
This script is meant to be used on a afk deathmatch playlist.
This IMO with this playlist: https://socialclub.rockstargames.com/games/gtav/xboxsx/playlists/playlist/ok7oH7IrD0C-on9km6yvHA
IMPORTANT!!:
MAKE SURE TO DISABLE THE MOD BEFORE YOU ARE DONE!!
*/
int mode = 0;
int currentlyheld;
main {
if(get_val(XB1_RIGHT)) {
if(get_val(XB1_A) && currentlyheld == FALSE) {
currentlyheld = TRUE;
mode++;
if (mode >= 2) mode = 0;
if (mode == 1) {
set_rumble(RUMBLE_B, 100);
combo_run(Turbo_Wait);
}
}
}
if (!get_val(XB1_A)) currentlyheld = FALSE;
if(mode >= 1) combo_run(Turbo_1);
set_val(TRACE_1, mode);
set_val(TRACE_2, currentlyheld);
}
combo Turbo_1 {
wait(4000);
if (mode == 0) break;
set_val(XB1_UP, 100);
wait(40);
set_val(XB1_UP, 0);
wait(30);
set_val(XB1_UP, 0);
wait(4000);
if (mode == 0) break;
set_val(XB1_A, 100);
wait(40);
set_val(XB1_A, 0);
wait(30);
set_val(XB1_A, 0);
}
combo Turbo_Wait {
wait(300);
set_rumble(RUMBLE_B, 0);
}