Destiny 2 Well Skate

D2 Well skate. Press d pad down twice to use then cancel script. I use RB for my heavy attack so you might have to change binds or edit script.
Version1
AuthorShylo
Publish DateWed, 14 Sep 2022 - 23:28
Last UpdateWed, 14 Sep 2022 - 23:28
Downloads76
RATE


0

0

Code: Select all
// Destiny 2 Well skate script
// Double press D pad down to activate and instantly stop script
int toggle;
main {
    if(event_press(XB1_DOWN)) toggle = !toggle;
    if(toggle) combo_run(afk);
    else combo_stop(afk);
}
combo afk {
    set_val(XB1_RB, 100);
    wait(50);
    set_val(XB1_A, -100);
    wait(55);   
    set_val(XB1_LB, 100);
    set_val(XB1_RB, 100);
    wait(60);       
    wait(4000);
}