halo 2 doubleshot help

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

Re: halo 2 doubleshot help

Postby Habi7a7 » Mon May 13, 2019 12:25 pm

Any chance this could be ported over to the T2? Or better yet, could the code be provided for this gamepack so I can port it over myself?
User avatar
Habi7a7
Private First Class
Private First Class
 
Posts: 3
Joined: Tue Apr 30, 2019 5:35 pm

Re: halo 2 doubleshot help

Postby J2Kbr » Sat May 18, 2019 3:15 pm

Please PM me by the end of next week requesting the Gamepack source code (I am currently in the middle of a trip, far from the office). Thanks.
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 Jul 04, 2019 3:26 am

I am proud to announce that I have written a double shot code for the Titan One that works 85%-90% of the time. :smile0517: My xbox live gamer tag is "HUGE SCORE". Add me as a friend on xbox live and message me about the double shot code so we can doouble shoot together. Be sure that your halo 2 mcc controller button layout is "Default". you will double shoot by pressing the "Left Bumper" on your controller. After months of coding work here is the code...
Code: Select all
//halo 2 double shot code. coded by macro7boo and J2Kbr
 
main {
      if(event_press(XB1_LB)){
         combo_run(magick);}}
 
combo magick {
 
    set_val(XB1_RT, 100);
    wait(20);
    set_val(XB1_RT, 0);
    wait(143);
 
    set_val(XB1_RT, 100);
    wait(20);   
    set_val(XB1_X, 100);
    wait(20);
 
    set_val(XB1_RT, 0);
    set_val(XB1_X, 0);
    wait(160);
 
    set_val(XB1_Y, 100);
    wait(20);
    set_val(XB1_Y, 0);
    wait(20);//was 60
 
    set_val(XB1_Y, 100);
    wait(20);
    set_val(XB1_Y, 0);
}
Last edited by macro7boo on Fri Jan 10, 2020 9:32 am, edited 5 times 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 Jul 08, 2019 10:56 am

Awesome, thank you for sharing with us! Appreciated.
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 » Mon Jul 08, 2019 6:11 pm

Thank you J2Kbr! For matchmaking games always shoot one regular shot with "Right Trigger" for the battle rifle before you use "Left Bumper" to double shoot the rest of the clip. For some reason the first double shot doesn't always work in matchmaking games if you don't shoot a regular shot first. In a custom game by yourself, the double shot works on the first shot and the rest of the clip 85% to 90% of the time. The double shot code is NOT perfect. The most I've been able to double shoot was three clips in a row perfect and the most hiccups were four hiccups in one clip. Usually there will be only one hiccup per clip or a perfect clip but sometimes you will get 2 hiccups per clip. Anyway, the double shot code is good enough for matchmaking games and should work pretty darn good. :smile0203:
Last edited by macro7boo on Mon Jul 08, 2019 9:11 pm, edited 3 times 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 macro7boo » Mon Jul 08, 2019 8:29 pm

But that's not all!... LOL! :innocent_smile_1: I decided to add "BXRRXYY" (a bxr) to the code. Just press left on the "D-Pad" to bxr. It is AWESOME! Here is the code...
Code: Select all
//halo 2 double shot and bxr code. coded by macro7boo and J2Kbr
 
main {
 
      if(event_press(XB1_LEFT)){
         combo_run(bxr);}
 
      if(event_press(XB1_LB)){
         combo_run(rrx);}}
 
 
combo bxr {
 
    set_val(XB1_B, 100);
    wait(20);
    set_val(XB1_B, 0);
    wait(180);
 
    set_val(XB1_X, 100);
    wait(20);
    set_val(XB1_X, 0);
 
    set_val(XB1_RT, 100);
    wait(20);
    set_val(XB1_RT, 0);
    wait(143);
 
    set_val(XB1_RT, 100);
    wait(20);   
    set_val(XB1_X, 100);
    wait(20);
 
    set_val(XB1_RT, 0);
    set_val(XB1_X, 0);
    wait(160);
 
    set_val(XB1_Y, 100);
    wait(20);
    set_val(XB1_Y, 0);
    wait(20);//was 60
 
    set_val(XB1_Y, 100);
    wait(20);
    set_val(XB1_Y, 0);
 
}
 
combo rrx {
 
    set_val(XB1_RT, 100);
    wait(20);
    set_val(XB1_RT, 0);
    wait(143);
 
    set_val(XB1_RT, 100);
    wait(20);   
    set_val(XB1_X, 100);
    wait(20);
 
    set_val(XB1_RT, 0);
    set_val(XB1_X, 0);
    wait(160);
 
    set_val(XB1_Y, 100);
    wait(20);
    set_val(XB1_Y, 0);
    wait(20);
 
    set_val(XB1_Y, 100);
    wait(20);
    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 » Tue Jul 09, 2019 10:24 am

Do you allow me incorporate your findings to the gamepack? thank in advance.
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 secureustech01 » Tue Jul 09, 2019 1:22 pm

GOD its jeff sea i got it dont know where to paste the code hit me up [email protected]

jkbr i know youll see this
Hdubssssssshotttt did 142-143
User avatar
secureustech01
Private
Private
 
Posts: 1
Joined: Tue Jul 09, 2019 5:50 am

Re: halo 2 doubleshot help

Postby macro7boo » Tue Jul 09, 2019 2:10 pm

J2Kbr - "Do you allow me incorporate your findings to the gamepack? thank in advance."

That would be great! You have my permission to incorporate my findings to the gamepack. just be sure that both my name "macro7boo" and your name "J2Kbr" is on it please. :smile0517: Also, please post a reply with directions that show where the code will be please.
Last edited by macro7boo on Tue Jul 09, 2019 2:30 pm, edited 3 times 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 macro7boo » Tue Jul 09, 2019 2:14 pm

"GOD its jeff sea i got it dont know where to paste the code hit me up [email protected]"

I'll contact you by that email in a couple minutes bro. Thank you
User avatar
macro7boo
Master Sergeant
Master Sergeant
 
Posts: 28
Joined: Fri Aug 31, 2018 11:16 pm

PreviousNext

Return to Gtuner Pro Support

Who is online

Users browsing this forum: Lkidd24 and 34 guests