Creation of Halo 5 Super Crouch PLZZZ!

Titan One general support. Questions, firmware update, feature request.

Creation of Halo 5 Super Crouch PLZZZ!

Postby DRG Starfall » Wed Jun 06, 2018 3:37 am

Hi guys im wondering if you guys can create a gamepack for Halo 5 guardians where the crouch button (B) is pressed so fast it creates a sliding like effect. And possibly an option or slider to program how many crouchs per second i want when im moving side to side ONLY.
I need it on the Halo 4 button layout for Halo 5, the current H5 Gamepack is perfect but the number of crouches it does is really not much.

Also if its possible for some one to create the Halo 2 gamepack where Pressing the top d pad (DPAD up) does a quadshot
Thanks guys!
User avatar
DRG Starfall
Corporal
Corporal
 
Posts: 4
Joined: Wed Jun 06, 2018 3:31 am

Re: Creation of Halo 5 Super Crouch PLZZZ!

Postby DRG Starfall » Wed Jun 06, 2018 4:35 am

Im terrible at gpc scripting but i would imagine the timing for each crouch to be something like this.
Im pretty sure you guys just loop it but again excuse my crap programing knowledge.
If you could make the crouches even faster than this please do that.
Code: Select all
combo crouchstrafe {
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 100);
    set_val(XB1_B, 100);
    wait(30);
User avatar
DRG Starfall
Corporal
Corporal
 
Posts: 4
Joined: Wed Jun 06, 2018 3:31 am

Re: Creation of Halo 5 Super Crouch PLZZZ!

Postby J2Kbr » Thu Jun 07, 2018 7:51 am

The script below will activate a similar combo you posted above when pressing B, it will run in loop while B is pressed.
Code: Select all
main {
    if(get_val(XB1_B)) {
        combo_run(crouchstrafe);
    }
}
 
combo crouchstrafe {
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 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: Creation of Halo 5 Super Crouch PLZZZ!

Postby DRG Starfall » Thu Mar 14, 2019 3:33 pm

Thanks finally could you make the same combo but when you press UP on the D-pad it turns the script off, so you can just go back to do a normal crouch
Thanks
User avatar
DRG Starfall
Corporal
Corporal
 
Posts: 4
Joined: Wed Jun 06, 2018 3:31 am

Re: Creation of Halo 5 Super Crouch PLZZZ!

Postby J2Kbr » Sat Mar 16, 2019 11:53 am

DRG Starfall wrote:Thanks finally could you make the same combo but when you press UP on the D-pad it turns the script off, so you can just go back to do a normal crouch Thanks

Done. :smile0517:
Code: Select all
int toggle;
 
main {
    if(event_press(XB1_UP)) {
        toggle = !toggle;
    }
    if(toggle && get_val(XB1_B)) {
        combo_run(crouchstrafe);
    }
}
 
combo crouchstrafe {
    set_val(XB1_B, 100);
    wait(30);
    set_val(XB1_B, 0);
    wait(20);
    set_val(XB1_B, 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


Return to Titan One Device

Who is online

Users browsing this forum: No registered users and 60 guests