Page 1 of 1

Halo 2 classic Requesting a new script

PostPosted: Wed Feb 03, 2016 8:55 am
by jesus1
I am requesting a script that allows you to make yy for double shot instead of auto double shot. People can tell you have a moded controlle because you dont do yy.

Re: Halo 2 classic Requesting a new script

PostPosted: Wed Feb 03, 2016 9:38 am
by J2Kbr
Here is a script for double shot:

Code: Select all
define B_RFIRE                              = XB1_RT;
define B_WEAPON                             = XB1_Y;
define B_RELOAD                             = XB1_X;

main {
    if(get_val(B_RFIRE)) {
        set_val(B_RFIRE, 0);
        combo_run(DoubleShot);
    }
}

combo DoubleShot {
    set_val(B_RFIRE, 100);
    wait(100); wait(45);
    set_val(B_RFIRE, 100);
    wait(60);
    set_val(B_RELOAD, 100);
    wait(60); wait(140);
    call(YY);
    wait(210);
}

combo YY {
    set_val(B_WEAPON, 100);
    wait(20); wait(20);
    set_val(B_WEAPON, 100);
    wait(20);
}


Re: Halo 2 classic Requesting a new script

PostPosted: Wed Feb 03, 2016 11:11 pm
by jesus1
doubleshot works great but i want to see the yy part. please help me. people can tell that im using a mod becouse everyone that know how the quadshot work. cant just doubleshot consistently without doin the yy part. this has been driving me nutts. please help

Re: Halo 2 classic Requesting a new script

PostPosted: Wed Feb 03, 2016 11:34 pm
by bonefisher
There is the YY part in there.

Re: Halo 2 classic Requesting a new script

PostPosted: Thu Feb 04, 2016 10:25 am
by J2Kbr
bonefisher wrote:There is the YY part in there.

+1