AFK GTA Online - Inside Track Horse Race Bid Glitch - Horse #1 - Possible Patch

8/3/2019 - WARNING - R* is starting to "ban" people from casino games with "not available right now". No longer able to bet on casino games. To use: 1st: Go to the Casino racing tables, sit down and press A to place a bet. 2nd: Move your cursor under the RULES button. 3rd: Press Y to start the loop, sit back, go outside, take a nap, whatever, and come back to loads of chips. The script will select the #1 horse on the roster, go to raise the bid, holding the raise bid option, it will cycle to start the race. Though the screen will show a deduction of $100-$300 chips, in the background during the race, the glitch will raise it to max bid. If the horse wins, you reap the benefit of max payout, if you lose it only takes out the $100-$300. ****CREDITS TO SAINT FOR BASELINE SCRIPT IDEA.***
Version2.0
AuthorGODDARD
Publish DateThu, 1 Aug 2019 - 22:51
Last UpdateThu, 1 Aug 2019 - 22:51
Downloads171
RATE


2

0

Release Notes: 8/3/2019 - WARNING - R* is starting to "ban" people from casino games with "not available right now". No longer able to bet on casino games. Horse #1. Set delays to help with slower screen transitions if using Geforce NOW or Steamlink.
Code: Select all
/*
        ****PC & XBOX ONE SCRIPT****
        ****CREDITS TO SAINT FOR BASELINE SCRIPT IDEA.***
Developed in combination of combomagic script copying and Saint's race combo timeline.
 
 The script will select the #1 horse on the roster, go to raise bid, holding the raise bid option, it will cycle to start race.
 Though the screen will show a deduction of $100-$300 chips, in the background during the race, the glitch will raise it to max bid.
 If the horse wins, you reap the benefit of max payout, if you lose it only takes out the $100-$300.
 
 1st: Go to the Casino racing tables, sit down and press A to place a bet.
 2nd: Move your cursor under the RULES button.
 3rd: Press Y to start the loop, sit back, go outside, take a nap, whatever, and come back to loads of chips.
 
 
I've had this script running non-stop for hours on end. On PC and XBOX ONE. It can push over a million chips per hour.
I compared a modified script to betting on Horse #6 which has 30/1 odds, which can give large payouts. The lower frequency of wins makes the
 Horse #1 better for winnings per hour.
*/

int race_combo = 10000;
int onoff;
 
main {
    if (event_press(XB360_Y)){
        onoff = !onoff;
        race_combo = 10000;
    }
  if(onoff){
    if(race_combo){
        combo_run(race);
    }
}
}
 
combo race {
    set_val(XB360_RIGHT, 100);
    wait(100);
    set_val(XB360_RIGHT, 0);
    wait(500);
    set_val(XB360_A, 100);
    wait(100);
    set_val(XB360_A, 0);
    wait(500);
    set_val(XB360_LEFT, 100);
    wait(250);
    set_val(XB360_LEFT, 0);
    wait(250);
    set_val(XB360_UP, 100);
    wait(250);
    set_val(XB360_UP, 0);
    wait(250);
    set_val(XB360_UP, 100);
    wait(250);
    set_val(XB360_UP, 0);
    wait(250);
    set_val(XB360_UP, 100);
    wait(250);
    set_val(XB360_UP, 0);
    wait(250);
    set_val(XB360_UP, 100);
    wait(250);
    set_val(XB360_UP, 0);
    wait(250);
    set_val(XB360_UP, 100);
    wait(250);
    set_val(XB360_UP, 0);
    wait(250);
    set_val(XB360_A, 100);
    wait(250);
    set_val(XB360_A, 0);
    wait(250);
    set_val(XB360_RIGHT, 100);
    wait(250);
    set_val(XB360_RIGHT, 0);
    wait(250);
    set_val(XB360_RIGHT, 100);
    wait(250);
    set_val(XB360_RIGHT, 0);
    wait(250);
    set_val(XB360_A, 100);
    wait(280);
    set_val(XB360_DOWN, 100);
    set_val(XB360_A, 100);
    wait(140);
    set_val(XB360_DOWN, 0);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
     set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(4000);
    set_val(XB360_A, 100);
    wait(3000);
    set_val(XB360_DOWN, 100);
    wait(120);
    set_val(XB360_DOWN, 0);
    wait(790);
    set_val(XB360_A, 100);
    wait(150);
    set_val(XB360_A, 0);
    wait (500)
}