Are there any Series X rapid fire scripts?

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

Are there any Series X rapid fire scripts?

Postby hopchuff » Sun May 30, 2021 2:30 pm

Like the title states...

I've tried using probably a dozen scripts to use on my Titan One with my series X and I've come away disappointed.

note: this is with me using the Series X controller
User avatar
hopchuff
Private
Private
 
Posts: 1
Joined: Sun May 30, 2021 2:25 pm

Re: Are there any Series X rapid fire scripts?

Postby Mad » Sun May 30, 2021 9:59 pm

Hi,

All rapidfire scripts should work the same, you just need to adjust the hold and release times.
Code: Select all
define RF_HOLD    = 33;
define RF_RELEASE = 64;
 
int toggle;
 
main {
    if(get_val(XB1_LT) && event_press(XB1_DOWN)) toggle = !toggle;
    if(toggle && get_val(XB1_RT)) combo_run(RF);
}
 
combo RF {
    set_val(XB1_RT, 100);
    wait(RF_HOLD);
    set_val(XB1_RT, 0);
    wait(RF_RELEASE);
}

To toggle on/off hold left trigger and press dpad down.

Note that rapidfire should only be used on semi-automatic weapons. Using rapidfire on automatics will most likely slow the weapon down.
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: Are there any Series X rapid fire scripts?

Postby Beryl » Mon Jul 19, 2021 12:13 am

Is there a way to add an auto toggle off when the LT is released? Just so it always goes back to off when you stop ads'n? Im after a rapid fire script for pubg to add to the anti recoil script i have?
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Are there any Series X rapid fire scripts?

Postby Mad » Mon Jul 19, 2021 12:40 am

Beryl wrote:Is there a way to add an auto toggle off when the LT is released? Just so it always goes back to off when you stop ads'n? Im after a rapid fire script for pubg to add to the anti recoil script i have?

For titan two yeah? (titan one section)
Code: Select all
#include <xb1.gph>
#define RF_HOLD    33
#define RF_RELEASE 64
 
bool toggle;
 
main {
    if(is_active(XB1_LT) && event_active(XB1_DOWN)) toggle = !toggle;
    if(toggle && is_active(XB1_RT)) combo_run(RF);
    if(event_release(XB1_LT)) toggle = 0;
}
 
combo RF {
    set_val(XB1_RT, 100);
    wait(RF_HOLD);
    set_val(XB1_RT, 0);
    wait(RF_RELEASE);
}
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: Are there any Series X rapid fire scripts?

Postby Beryl » Mon Jul 19, 2021 1:24 am

Yeah for the titan 2, sorry didnt realise i was in the wrong section. Just in search of a rapid fire toggle script lol
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Are there any Series X rapid fire scripts?

Postby Mad » Mon Jul 19, 2021 2:05 am

Beryl wrote:Yeah for the titan 2, sorry didnt realise i was in the wrong section. Just in search of a rapid fire toggle script lol

No problem. :joia:
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: Are there any Series X rapid fire scripts?

Postby Beryl » Mon Jul 19, 2021 4:24 am

Btw that works perfect, thanks again
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Are there any Series X rapid fire scripts?

Postby Beryl » Mon Jul 19, 2021 10:05 am

Mad wrote:
Beryl wrote:Yeah for the titan 2, sorry didnt realise i was in the wrong section. Just in search of a rapid fire toggle script lol

No problem. :joia:


Sorry got a question,lol if im using this rapid fire in a script with my anti recoil will this operate with this? Or do i need to have it with this script? Also unsure if u play pubg put iv always had an issue finding correct timings for the dmrs is there a base line recoil and delay value to have the scope hold firm when you using the rapid fire?
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Are there any Series X rapid fire scripts?

Postby Beryl » Sun Jul 25, 2021 1:44 am

Mad wrote:
Beryl wrote:Is there a way to add an auto toggle off when the LT is released? Just so it always goes back to off when you stop ads'n? Im after a rapid fire script for pubg to add to the anti recoil script i have?

For titan two yeah? (titan one section)
Code: Select all
#include <xb1.gph>
#define RF_HOLD    33
#define RF_RELEASE 64
 
bool toggle;
 
main {
    if(is_active(XB1_LT) && event_active(XB1_DOWN)) toggle = !toggle;
    if(toggle && is_active(XB1_RT)) combo_run(RF);
    if(event_release(XB1_LT)) toggle = 0;
}
 
combo RF {
    set_val(XB1_RT, 100);
    wait(RF_HOLD);
    set_val(XB1_RT, 0);
    wait(RF_RELEASE);
}


Not sure if im doing something wrong but my anti recoil dont seem to work with this when i use dmrs in PUBG the recoils still kicking up, does this script need an anti recoil tied into it or does anyone know the best hold release figures?
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Are there any Series X rapid fire scripts?

Postby Mad » Sun Jul 25, 2021 2:05 am

Beryl wrote:Not sure if im doing something wrong but my anti recoil dont seem to work with this when i use dmrs in PUBG the recoils still kicking up, does this script need an anti recoil tied into it or does anyone know the best hold release figures?

Check device monitor to see if anti recoil is being applied when you fire. If it is increase the value. If it isn't you broke something. :P
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Next

Return to Titan One Device

Who is online

Users browsing this forum: No registered users and 114 guests