halo 2 doubleshot help

Gtuner Pro general support. Operation, questions, updates, feature request.

halo 2 doubleshot help

Postby macro7boo » Sat Sep 01, 2018 12:52 am

hello, i just received titan one in the mail today. i loaded the halo 2 mcc doubleshot gamepack onto the titan one then loaded mcc on my xbox one. the doubleshot doesn't work properly so i tried to use the combo magick plugin to code a doubleshot manually. i then copied the code into the GBC compiler but i am receiving error messages for the code. can someone help me code the doubleshot loop for the titan one please OR just tell me how to do this please?

combo magic code below

Code: Select all
combo magick {
    set_val(XB1_RT, 100);
    wait(110);
    set_val(XB1_RT, 0);
    wait(40);
    set_val(XB1_RT, 100);
    wait(100);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 100);
    wait(110);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 0);
    wait(10);
    set_val(XB1_RT, 0);
    wait(220);
    set_val(XB1_Y, 100);
    wait(70);
    set_val(XB1_Y, 0);
    wait(60);
    set_val(XB1_Y, 100);
    wait(60);
    set_val(XB1_Y, 0);
}
User avatar
macro7boo
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Fri Aug 31, 2018 11:16 pm

Re: halo 2 doubleshot help

Postby J2Kbr » Sun Sep 02, 2018 12:36 pm

The script below will run the generated combo by pressing the RT button:
Code: Select all
main {
    if(event_press(XB1_RT)) {
        combo_run(magick);
    }
}
 
combo magick {
    set_val(XB1_RT, 100);
    wait(110);
    set_val(XB1_RT, 0);
    wait(40);
    set_val(XB1_RT, 100);
    wait(100);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 100);
    wait(110);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 0);
    wait(10);
    set_val(XB1_RT, 0);
    wait(220);
    set_val(XB1_Y, 100);
    wait(70);
    set_val(XB1_Y, 0);
    wait(60);
    set_val(XB1_Y, 100);
    wait(60);
    set_val(XB1_Y, 0);
}
 
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: halo 2 doubleshot help

Postby macro7boo » Sun Sep 02, 2018 11:14 pm

thank you very much for the response
i tinkered around a little bit with the code. the code below does doubleshot much better! a work in progress...

how do i make the code loop while holding down RT?

Code: Select all
main {
    if(event_press(XB1_RT)) {
        combo_run(magick);
    }
}
 
combo magick {
    set_val(XB1_RT, 100);
    wait(110);
    set_val(XB1_RT, 0);
    wait(55);
    set_val(XB1_RT, 100);
    wait(150);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 100);
    wait(110);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 0);
    wait(10);
    set_val(XB1_RT, 0);
    wait(140);
    set_val(XB1_Y, 100);
    wait(70);
    set_val(XB1_Y, 0);
    wait(60);
    set_val(XB1_Y, 100);
    wait(60);
    set_val(XB1_Y, 0);
}
User avatar
macro7boo
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Fri Aug 31, 2018 11:16 pm

Re: halo 2 doubleshot help

Postby J2Kbr » Wed Sep 05, 2018 1:28 pm

Nice see you are making progress:
macro7boo wrote:how do i make the code loop while holding down RT?

By changing this line:
Code: Select all
    if(event_press(XB1_RT)) {
to:
Code: Select all
    if(get_val(XB1_RT)) {
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: halo 2 doubleshot help

Postby macro7boo » Wed Sep 05, 2018 11:14 pm

the code below is the best i could do for the doubleshot. its still not good enough for multiplayer yet. if anyone on this forum has a perfect doubleshot code, could you share it with me please? :smile0201:

Code: Select all
main {
    if(event_press(XB1_LB)) {
        combo_run(magick);
    }
}
 
combo magick {
    set_val(XB1_RT, 100);
    wait(110);
    set_val(XB1_RT, 0);
    wait(57);
    set_val(XB1_RT, 100);
    wait(30);
    set_val(XB1_RT, 100);
    set_val(XB1_X, 100);
    wait(110);
 
    set_val(XB1_RT, 100);
    set_val(XB1_X, 0);
    wait(30);
    set_val(XB1_RT, 0);
    wait(70);
    set_val(XB1_Y, 100);
    wait(60);
    set_val(XB1_Y, 0);
    wait(20);
    set_val(XB1_Y, 100);
    wait(20);
    set_val(XB1_Y, 0);
}
Last edited by macro7boo on Sun Jun 30, 2019 3:30 am, edited 1 time in total.
User avatar
macro7boo
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Fri Aug 31, 2018 11:16 pm

Re: halo 2 doubleshot help

Postby J2Kbr » Mon Sep 10, 2018 8:05 am

shortly I will be trying your script in game and improve it. Thank you for sharing.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: halo 2 doubleshot help

Postby macro7boo » Thu Sep 20, 2018 2:05 am

having a hard time improving it? i know i had a hard time lol :innocent_smile_1:
User avatar
macro7boo
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Fri Aug 31, 2018 11:16 pm

Re: halo 2 doubleshot help

Postby J2Kbr » Fri Sep 21, 2018 9:14 am

In other thread I posted a improved version (for Titan Two), and also released a new version of the gamepack for the Titan One. however, getting I was not able to pull off 6 shots, at the best was 5, with 4 consistently.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: halo 2 doubleshot help

Postby macro7boo » Sun Sep 23, 2018 2:41 am

can you post the thread link for the titan two improved doubleshot on this thread please? also, is the titan two doubleshot consistent, every time a doubleshot?
User avatar
macro7boo
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Fri Aug 31, 2018 11:16 pm

Re: halo 2 doubleshot help

Postby J2Kbr » Mon Sep 24, 2018 9:12 am

ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Next

Return to Gtuner Pro Support

Who is online

Users browsing this forum: No registered users and 28 guests