Call of Duty Cold War God mode and AFK scripts

GPC2 script programming for Titan Two. Code examples, questions, requests.

Call of Duty Cold War God mode and AFK scripts

Postby ThreeLions76 » Wed Jan 27, 2021 11:38 am

Hi, with a lot of help from fellow T2 user 'Mad' I thought it would be useful to share 2 scripts, 1 for god mode, the other for AFK with the Nova Gas D.I.E machine. Hope they help!

The first is for getting into God Mode (if you dont know the full steps leading up to the glitch just look on youtube)

I recommend buying the XM4 wall buy and having it in your hand when doing the glitch. This works for me everytime on a PS5 (timing might be different for other consoles), just dont have any perks (except maybe stamin up) and look at the floor before activating glitch.

If after doing the glitch it doesnt work and you go into the chopper - change the wait time to 2.40
Code: Select all
#pragma METAINFO("god mode 2.39secs", 1, 0, "ThreeLions76")
 
main {
    // Left trigger + dpad down
    if(is_active(BUTTON_8) && event_active(BUTTON_11)) {
        combo_run(god_mode);
    }
}
 
combo god_mode {
    set_val(STICK_1_Y, 100); // look down
    wait(200);
    set_val(BUTTON_4, 100); // throw molotov
    wait(60);
    wait(2390); // how long it takes to drop your health
    set_val(BUTTON_13, 100); // chopper gunner
    wait(60);
}

The second glitch is for high rounds after you have god mode. I recommend going the the penthouse roof and getting yourself in a corner. At round 80 it takes about 2.5 mins per round with the Nova Gas die machine, so not bad.
Code: Select all
#pragma METAINFO("d.i.e AFK with ring of fire", 1, 0, "ThreeLions76")
#include <ps4.gph>
 //  Hold L2 and dpad down to activate
bool die;
 
main {
    if(is_active(PS4_L2) && event_active(PS4_DOWN)) {
        die = !die;
    }
 
    if(die) combo_run(zombies_die);
}
 
combo zombies_die {
    set_val(PS4_L2, 100); // suck souls for 6 secs.
    wait(6000);
    set_val(PS4_R2, 100); // tap R2.
    wait(60);
    set_val(PS4_L2, 100); // suck souls for 6 secs.
    wait(6000);
    set_val(PS4_R2, 100); // tap R2.
    wait(60);
    set_val(PS4_L2, 100); // suck souls for 6 secs.
    wait(6000);
    set_val(PS4_R2, 100); // tap R2.
    wait(60);
    set_val(PS4_L1, 100); // ring of fire, L1 and R1
    set_val(PS4_R1, 100);
    wait(60);
    wait(500); // Wait half a second and repeat.
}
User avatar
ThreeLions76
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Mon Dec 21, 2020 1:43 pm

Re: Call of Duty Cold War God mode and AFK scripts

Postby Mad » Thu Jan 28, 2021 10:55 pm

Thanks for sharing your findings with us.

You should publish them in the online resource so more people see and can use your scripts. You can use your forum login details in Gtuner>Tools>Preferences>ConsoleTuner

Then with the script open in the IDE, Tools>Publish Wizard.

:joia: :joia:
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Call of Duty Cold War God mode and AFK scripts

Postby ThreeLions76 » Fri Jan 29, 2021 8:20 am

Thanks for the info, more than happy to share :smile0517:
User avatar
ThreeLions76
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Mon Dec 21, 2020 1:43 pm

Re: Call of Duty Cold War God mode and AFK scripts

Postby bashion101 » Sun Jul 18, 2021 2:07 pm

does this still work? stummbled across this thread searching for some scipts for warzone! New to the community trying to figure everything out.
Bashion101
User avatar
bashion101
Private First Class
Private First Class
 
Posts: 2
Joined: Sat Jul 17, 2021 2:39 am

Re: Call of Duty Cold War God mode and AFK scripts

Postby ThreeLions76 » Wed Aug 18, 2021 8:06 am

no - they have been patched
User avatar
ThreeLions76
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Mon Dec 21, 2020 1:43 pm


Return to GPC2 Script Programming

Who is online

Users browsing this forum: No registered users and 183 guests