Cold War Glitch Script

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

Re: Cold War Glitch Script

Postby Sloppyname41 » Wed Jan 06, 2021 5:38 am

Paste the script.

File>Install To>Memory Slot #[/quote]




After I paste the script i press the x to save changes and drag the file from my computer to the titan but it says error. Is there a YouTube video or anything you can use to demonstrate. Anything helps
User avatar
Sloppyname41
Sergeant First Class
Sergeant First Class
 
Posts: 21
Joined: Fri Feb 28, 2020 8:28 pm

Re: Cold War Glitch Script

Postby Mad » Wed Jan 06, 2021 5:43 am

Sloppyname41 wrote:After I paste the script i press the x to save changes and drag the file from my computer to the titan but it says error. Is there a YouTube video or anything you can use to demonstrate. Anything helps

You are probably not copying the whole script. Do the steps from my previous post.
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Cold War Glitch Script

Postby Sloppyname41 » Wed Jan 06, 2021 6:08 am

You are probably not copying the whole script. Do the steps from my previous post.[/quote]




Thank you so much I got it working I was confused with the last step. Install active work to memory slot.
User avatar
Sloppyname41
Sergeant First Class
Sergeant First Class
 
Posts: 21
Joined: Fri Feb 28, 2020 8:28 pm

Re: Cold War Glitch Script

Postby Mad » Wed Jan 06, 2021 6:53 am

Sloppyname41 wrote:Thank you so much I got it working I was confused with the last step. Install active work to memory slot.

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

Re: Cold War Glitch Script

Postby tainam19 » Sun Jan 10, 2021 7:07 am

could make it so that it spams sqaure really fast so that the c4 detonates pls .
User avatar
tainam19
Corporal
Corporal
 
Posts: 5
Joined: Thu Jan 17, 2019 3:31 am

Re: Cold War Glitch Script

Postby Mad » Mon Jan 11, 2021 1:07 am

tainam19 wrote:could make it so that it spams sqaure really fast so that the c4 detonates pls .

There are already several in this thread that spam it. :smile0517:
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Cold War Glitch Script

Postby Davidjpj » Fri Jan 15, 2021 6:58 pm

Hey, I’m not sure if someone has done it and converted it already but is there a script that I can use the actually D.I.E wonder weapon while being afk? Like holding LT down for some time and tapping RT like 3-4 times, then loop. If someone can help guide me to one or possibly make one for the T2 Xbox. There’s a couple device ones that do it.
User avatar
Davidjpj
Private
Private
 
Posts: 1
Joined: Fri Jan 15, 2021 6:53 pm

Re: Cold War Glitch Script

Postby Mad » Sat Jan 16, 2021 9:27 am

Davidjpj wrote:Hey, I’m not sure if someone has done it and converted it already but is there a script that I can use the actually D.I.E wonder weapon while being afk?

Here you go:
Code: Select all
#include <titanone.gph>
int start ;
 
main {
//////////////////////////////////////////
///Created and published by: K1NG-SAVEL //
//////////////////////////////////////////
// Start & Stop Combo Right Stick Click //
/////////////////////////////////////////
    if(event_press(PS4_R3)) start = !start;
 
    if(start) {
        combo_run(Right_Analog);
    }else{
        combo_stop(Right_Analog);
    }
}
combo Right_Analog {
    set_val(PS4_L2, 100);
    wait(8800);
    set_val(PS4_L2, 100);
    wait(8800);
    set_val(PS4_L2, 100);
    wait(950);
    set_val(PS4_L2, 0);
    wait(730);
    set_val(PS4_R2, 100);
    wait(120);
    set_val(PS4_R2, 0);
    wait(540);
    set_val(PS4_R2, 100);
    wait(130);
    set_val(PS4_R2, 0);
    wait(490);
    set_val(PS4_R2, 100);
    wait(160);
    set_val(PS4_R2, 0);
    wait(540);
    set_val(PS4_R2, 100);
    wait(120);
    set_val(PS4_R2, 0);
    wait(470);
    set_val(PS4_L2, 100);
    wait(2510);
}
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Cold War Glitch Script

Postby ThreeLions76 » Sat Jan 23, 2021 4:11 pm

Hi all, There is a new God Mode glitch for cold war zombies but its very hard to get the timing right for it. You throw a molotov down (R1) to kill yourself, then when your health bar gets to about 34 or 21 you pull out a chopper gunner (right on dpad). You can't have any armour or perks. If anyone could make a script for this with the correct timing, I (and a lot of other people) would be eternally grateful!
User avatar
ThreeLions76
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Mon Dec 21, 2020 1:43 pm

Re: Cold War Glitch Script

Postby Mad » Sat Jan 23, 2021 8:30 pm

ThreeLions76 wrote:Hi all, There is a new God Mode glitch for cold war zombies but its very hard to get the timing right for it.

I have made a script based on your information, you will need to change this value based on how long it takes to get your health down:
Code: Select all
#define HEALTH_WAIT 500 // adjust this value


Code: Select all
#define HEALTH_WAIT 500 // adjust this value
 
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(HEALTH_WAIT); // how long it takes to drop your health
    set_val(BUTTON_13, 100); // chopper gunner
    wait(60);
}
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

PreviousNext

Return to GPC2 Script Programming

Who is online

Users browsing this forum: No registered users and 143 guests