Destiny Xur auto-buy Heavy ammo

Hold L3 and press R3 to start the script. Make sure your cursor is over the heavy ammo button for xur. This script will auto buy heavy ammo synth from Xur on Destiny. It will continue to run until you hold L3 and press R3 again. I have only tested this on PS4. I can not be held responsible if you spend too many strange coins*
Version1.00
Authori3uu
Publish DateFri, 28 Oct 2016 - 14:45
Last UpdateFri, 28 Oct 2016 - 14:45
Downloads189
RATE


1

0

Release Notes: This is mostly a copy/paste from the DestinyAFK script with slight modifications. Enjoy!
Code: Select all
int runXUR = FALSE;
 
main {
    if(get_val(8) && event_press(5)) {
        runXUR= !runXUR;
    }
    if(runXUR) {
        combo_run(XUR);
    } else combo_stop(XUR);
}
 
combo XUR {
    set_val(19, 100);
    wait(2100);
    wait(600);
}