PS4 Fallout 4 Dupe and Scrap Script

To use: Go up to the workshop with the shipment already in hand and hold R1, it will press square to open workshop and as you continue to hold R1 it will dupe copper. I've noticed that when you reach around 20k copper, the game begins to lag and you will lose your shipment so you should keep an eye on this to stop it when it reach that amount. Then go to your scrap and build spot - Open the workshop with the touch pad, go to the statues and then the baseball one. Then aim around mid back as and hold L1, it will start scrapping and placing new ones while you hold L1.
Version1.0
AuthorBlueForce
Publish DateSun, 7 Feb 2016 - 16:27
Last UpdateSun, 7 Feb 2016 - 16:27
Downloads204
RATE


4

0

Release Notes: R1 - Dupe script --(throws grenade after you're done duping though so will probably change that to a different button on the next version)-- L1 - Scrap and Build script, will scrap and keep building new statues --(working on making this happen faster, haven't figured it out yet)--
Code: Select all
//
// 2/5/2016 5:19:20 PM
// Combo generated by BlueForce
// Combo assistance generated by Combo Magik
//----------------------------------------
 
 
 
 
main {
    if(get_val(PS4_R1)) {
        combo_run(dupe);
        }
 
    if(get_val(PS4_L1)) {
        combo_run(scrap);
    }
}
 
//dupe combo
combo dupe {
    set_val(PS4_SQUARE, 100);
    wait(110);
    set_val(PS4_SQUARE, 0);
    wait(300);
    set_val(PS4_TRIANGLE, 100);
    wait(80);
    set_val(PS4_TRIANGLE, 100);
    set_val(PS4_SQUARE, 100);
    wait(60);
    set_val(PS4_TRIANGLE, 0);
    set_val(PS4_SQUARE, 100);
    wait(80);
    set_val(PS4_SQUARE, 0);
    wait(200);
}
 
// statue build and scrap
combo scrap {
    set_val(PS4_SQUARE, 100);
    wait(20);
    set_val(PS4_SQUARE, 0);
    wait(20);
    set_val(PS4_CROSS, 100);
    wait(20);
    set_val(PS4_CROSS, 0);
    wait(20);
    set_val(PS4_CROSS, 100);
    wait(20);
    set_val(PS4_CROSS, 0);
}