Ski-Doo Snowmobile Challenge Helper

Increased turning by pressing UP automatically when steering LEFT or RIGHT on the D-PAD Holds 'X' for 62 seconds (or until boost is exhausted) when LS is clicked
Version1.1
AuthorSitava
Publish DateSun, 31 Aug 2014 - 02:39
Last UpdateSun, 31 Aug 2014 - 02:39
Downloads60
RATE


2

0

Release Notes: Added support for the Boost achievements (30 & 60 seconds)
Code: Select all
// Ski-Do Snowmobile Challenge
 
// Increased turning by pressing UP automatically when steering LEFT or RIGHT on the D-PAD
// Addded support for the Boost achievements (30 & 60 seconds) by turning the 'X' button on for 62 seconds when you click LS.
 
int msecs;
int pause=31000;
 
main
{
    if (event_press(XB360_LS)) {combo_run(Boost);}
 
    if (get_val(XB360_RT) > 90 && get_val(XB360_LEFT) || get_val(XB360_RIGHT))
                {msecs = msecs + get_rtime();
                        if(msecs >= 500) {set_val(XB360_UP, 100);}
                }
         else {msecs=0;}
}
 
combo Boost
    {
    set_val(XB360_X, 100);
    wait (pause);
    set_val(XB360_X, 100);
    wait (pause);
    set_val(XB360_X, 0);
    }