Destiny - SRL Made easier

This script allows for racing in the SRL event in Destiny a little bit easier. Give your L2/LT hand a rest as this script is set to automatically hold it for you. It also remaps L3 + R3 to be left and right on the D-Pad respectively for when you want to do emotes/tricks as well as pressing both will equate to pressing UP on the D-Pad. Pressing R2 will activate Down on the D-Pad. To enable script press L3 + Start/Back/Menu. A Green light will inform you that the script is active because Green means GO!!
Version1.001
AuthorX-Dream
Publish DateFri, 18 Dec 2015 - 07:23
Last UpdateThu, 24 Dec 2015 - 04:29
Downloads229
RATE


2

1

Release Notes: Added variable for situations where boost button isn't L2/LT
Code: Select all
define GO = 7//-----SET THIS TO WHICHEVER BUTTON IS BOOST ON SPARROW
int srl_go = FALSE;
 
main {
    if (get_val(8) && event_press(0))
    output_reconnection();
    if (get_val(8) && event_press(2))
    {
    srl_go = !srl_go;
    }
    if(srl_go)
    {
    set_val (GO,100);
    set_led (LED_1, 0);
    set_led (LED_2, 0);
    set_led (LED_3, 1);
    set_led (LED_4, 0);
    swap (8,15);swap (5,16);
    }
    else {
        reset_leds();
        }
    if (srl_go && get_val(15) && get_val(16)) {
    set_val (15,0);
    set_val (16,0);
    set_val (13,1);
    }
}