Gold Vertical EVERYTIME

NBA 2K17 Gold Vertical in the gym. You will get the highest vert and get a gold star with ease. Two times will fill your doing work meter up helping with attributes.
Version1.0
AuthorSaint
Publish DateMon, 19 Sep 2016 - 08:26
Last UpdateMon, 19 Sep 2016 - 08:26
Downloads158
RATE


0

0

Code: Select all
 
//Get gold everytime with the vertical jump in the gym.
 
main {
 
        if(event_press(XB1_Y))
            combo_run(Jump);
 
}
 
combo Jump {
    set_val(XB1_LY, 40);
    wait(10);
    set_val(XB1_LY, 75);
    wait(20);
    set_val(XB1_LY, 100);
    wait(820);
    set_val(XB1_LY, 71);
    wait(20);
    set_val(XB1_LY, 42);
    wait(10);
    set_val(XB1_LY, 0);
    wait(40);
    set_val(XB1_LY, -45);
    wait(10);
    set_val(XB1_LY, -75);
    wait(130);
    set_val(XB1_LY, -100);
    wait(60);
    set_val(XB1_LY, -51);
    wait(10);
    set_val(XB1_LY, 0);
}