Battleblock Theater Glide Mod (Xbox 360 only)

This simple Script allows the player to glide while holding the Y Button. To use, press LS while in the air, to use the normal Relief, just press Y. As an added bonus the RS Button is also Turbo, so holding RS will make the player call for help insanely fast. (For normal Call for Help use LT) I do not recommend this in an arena mach, due to how unfair of an advantage it can be, but using it in Trolls is fair, cause they are trolls, and this can be useful for getting out of a troll.
Version1.02
Author乃ԾЦㄎ
Publish DateFri, 19 Feb 2016 - 07:23
Last UpdateFri, 19 Feb 2016 - 08:03
Downloads57
RATE


2

0

Code: Select all
//
// Fri Feb 19 2016 00:01:03
// Script generated by Visual to GPC
//----------------------------------------
 
main {
    if(get_val(XB360_LS)) {
        combo_run(Turbo_1);
    }
    if(get_val(XB360_RS)) {
        combo_run(Turbo_2);
    }
}
 
combo Turbo_1 {
    set_val(XB360_Y, 100);
    wait(20);
    set_val(XB360_Y, 0);
    wait(10);
    set_val(XB360_Y, 0);
}
 
combo Turbo_2 {
    set_val(XB360_LT, 100);
    wait(20);
    set_val(XB360_LT, 0);
    wait(10);
    set_val(XB360_LT, 0);
}