RainbowSix Gamepack

Gtuner Plugins support. MaxAim, MaxRemapper, Combo Magick, Game Rec.

RainbowSix Gamepack

Postby DeadOrchard » Fri May 05, 2017 1:39 am

This is a message I sent to bonefisher, the creator of the Rainbow Six Siege gamepack. I just copied and pasted the message so you more of you could look at this awesome idea.

Hey man! I have some great ideas for your rainbow six siege gamepack that you can add! I also think they're really easy to put in, but they'll help A TON!!!!!
So if you're aiming down sights, there is a faster way to lean. I'll add a link to a video that explains how to do it. https://www.youtube.com/watch?v=O5JITGQwweQ (super simple, he shows how to do it in the beginning) If you could add a script that would do this automatically everytime you're aiming down sights, that would be amazing!!

*Maybe one of you guys could make a script for this?
User avatar
DeadOrchard
Private First Class
Private First Class
 
Posts: 2
Joined: Wed May 03, 2017 5:45 pm

Re: RainbowSix Gamepack

Postby J2Kbr » Fri May 05, 2017 4:34 pm

Very nice technique. Code such script is actually pretty simple, just detect the lean right/left button and run a combo to quick lean to the opposite side before go to the correct side.

What are the lean buttons on console? so I can code the script for you.
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: RainbowSix Gamepack

Postby bonefisher » Fri May 05, 2017 4:45 pm

While in ADS you click left stick to lean left and right to lean right
bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am

Re: RainbowSix Gamepack

Postby J2Kbr » Fri May 05, 2017 4:53 pm

Thanks for the clarification.

This script should do what is shown in the video:

Code: Select all
define ADS_BUTTON   = PS4_L2;
define LEAN_LEFT    = PS4_L3;
define LEAN_RIGHT   = PS4_R3;
 
main {
    if(get_val(ADS_BUTTON)) {
        if(event_press(LEAN_LEFT)) {
            combo_run(LeanLeft);
        } else if(event_press(LEAN_RIGHT)) {
            combo_run(LeanRight);
        }
    }
}
 
combo LeanLeft {
    set_val(LEAN_LEFT, 0);
    set_val(LEAN_RIGHT, 100);
    wait(40); wait(40);
    set_val(LEAN_LEFT, 100);
    wait(40);
}
 
combo LeanRight {
    set_val(LEAN_LEFT, 100);
    set_val(LEAN_RIGHT, 0);
    wait(40); wait(40);
    set_val(LEAN_RIGHT, 100);
    wait(40);
}
 
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: RainbowSix Gamepack

Postby DeadOrchard » Sat May 13, 2017 3:54 am

Bad ass! Is there a way to add this to bonefishers gamepack?
User avatar
DeadOrchard
Private First Class
Private First Class
 
Posts: 2
Joined: Wed May 03, 2017 5:45 pm


Return to Gtuner Plugins Support

Who is online

Users browsing this forum: No registered users and 61 guests