Fallout 76 XP & Carry weight Glitch (PS4)

For Fallout V1.02 This will make you CROSS and SQUARE 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 CROSS.... Find a disarm fragmentation grenade and hold Square... Hope it helped yall.
Version1
AuthorNexarous
Publish DateSun, 25 Nov 2018 - 00:54
Last UpdateSun, 25 Nov 2018 - 00:54
Downloads147
RATE


2

0

Release Notes: Fallout V1.02 Hurry before it gets patched
Code: Select all
//
// Sun Nov 25 2018 11:08:11
// Script generated by Visual to GPC
//----------------------------------------
 
main {
    if(get_val(PS4_CROSS)) {
        combo_run(Turbo_1);
    }
    if(get_val(PS4_SQUARE)) {
        combo_run(Turbo_2);
    }
}
 
combo Turbo_1 {
    set_val(PS4_CROSS, 100);
    wait(40);
    set_val(PS4_CROSS, 0);
    wait(30);
    set_val(PS4_CROSS, 0);
}
 
combo Turbo_2 {
    set_val(PS4_SQUARE, 100);
    wait(40);
    set_val(PS4_SQUARE, 0);
    wait(30);
    set_val(PS4_SQUARE, 0);
}