Fallout 76 XP & Carry weight Glitch (XBOX ONE)

For Fallout V1.02 This will make you A and X buttons Rapid fire so you don't have to keep pressing the button, this is to remove the fact that your thumb will not get sore so you can rest you thumb from all that pressing..... Keep over Pocketed Armour Keep holding A.... Find a disarm fragmentation grenade and hold X... Hope it helped yall.
Version1
AuthorNexarous
Publish DateTue, 27 Nov 2018 - 15:10
Last UpdateTue, 27 Nov 2018 - 15:10
Downloads178
RATE


1

0

Release Notes: Fallout V1.02 Hurry before it gets patched
Code: Select all
//
// Wed Nov 28 2018 01:37:17
// Script generated by Visual to GPC
//----------------------------------------
 
main {
    if(get_val(XB1_X)) {
        combo_run(Turbo_1);
    }
    if(get_val(XB1_A)) {
        combo_run(Turbo_2);
    }
}
 
combo Turbo_1 {
    set_val(XB1_X, 100);
    wait(40);
    set_val(XB1_X, 0);
    wait(30);
    set_val(XB1_X, 0);
}
 
combo Turbo_2 {
    set_val(XB1_A, 100);
    wait(40);
    set_val(XB1_A, 0);
    wait(30);
    set_val(XB1_A, 0);
}