Page 1 of 1

Help..Vigor XB1

PostPosted: Fri May 06, 2022 1:19 pm
by Finrir3938
Wondering if anyone has a script or could make one for vigor. I'm not really good at this sort of thing. Any help or advice would be appreciated

Re: Help..Vigor XB1

PostPosted: Sat May 14, 2022 12:14 am
by Mad
You can use any script forget what the title says.
Mods like anti recoil, rapidfire, quickscope etc are generic and work on any game.

Re: Help..Vigor XB1

PostPosted: Tue May 24, 2022 12:27 pm
by Finrir3938
I will give it a shot. I know most rapid fire make it where you can't use consumables. Thanks for the response.

Re: Help..Vigor XB1

PostPosted: Tue May 24, 2022 12:34 pm
by Finrir3938
I will give it a shot. I know most rapid fire make it where you can't use consumables due to having to hold RT to use them
I would really like something to boost the aim assist not a full lock on it bot but a booster for when I get in a lobby with the cronos zen guys

Re: Help..Vigor XB1

PostPosted: Tue May 24, 2022 10:05 pm
by Mad
Any aim assist will also work they all do the same thing.

Code: Select all
int AP = 22; //Decrease if shake
int AM = -22; //Decrease if shake
int Delay = 20;
int Release = 23; //1+ higher than AP & AM
 
main {
    if(get_val(XB1_LT) && !get_val(XB1_RT)) {
        combo_run(AS);
    }
}
 
combo AS {
    set_val(10,a_f(10,AP));
    wait(Delay);
    set_val(9,a_f(9,AP));
    wait(Delay);
    set_val(10,a_f(10,AM));
    wait(Delay);
    set_val(9,a_f(9,AM));
    wait(Delay);
}
 
function a_f(p,m) {
    if(abs(get_val(p)) < Release)
    return m;
}