Destiny 2 Shatter skate

D2 shatter 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. Change shatter dive to press B.
Version1
AuthorShylo
Publish DateThu, 15 Sep 2022 - 00:16
Last UpdateThu, 15 Sep 2022 - 00:16
Downloads150
RATE


1

0

Code: Select all
// Destiny 2 Shatter 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_B, 100);
    wait(60);       
    wait(4000);
}