Page 1 of 1

Creation of Halo 5 Super Crouch PLZZZ!

PostPosted: Wed Jun 06, 2018 3:37 am
by DRG Starfall
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!

Re: Creation of Halo 5 Super Crouch PLZZZ!

PostPosted: Wed Jun 06, 2018 4:35 am
by DRG Starfall
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);

Re: Creation of Halo 5 Super Crouch PLZZZ!

PostPosted: Thu Jun 07, 2018 7:51 am
by J2Kbr
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);
}
 

Re: Creation of Halo 5 Super Crouch PLZZZ!

PostPosted: Thu Mar 14, 2019 3:33 pm
by DRG Starfall
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

Re: Creation of Halo 5 Super Crouch PLZZZ!

PostPosted: Sat Mar 16, 2019 11:53 am
by J2Kbr
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);
}