Next GamePack?

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

Re: Next GamePack?

Postby kenneth » Tue Oct 11, 2016 12:59 am

okay thanks J2K for that!!!!! but what is the( if statement ) that you use for the gamepack for that?????
User avatar
kenneth
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 181
Joined: Tue Nov 11, 2014 9:02 am

Re: Next GamePack?

Postby kenneth » Tue Oct 11, 2016 1:36 am

will this rapid fire works good with that automatic weapons in halo 5? ive noticed that my rapid fire messed up the automatic weapons, so will this one work much better? if so thats awesome!!!!! :)
User avatar
kenneth
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 181
Joined: Tue Nov 11, 2014 9:02 am

Re: Next GamePack?

Postby kenneth » Wed Oct 12, 2016 10:44 pm

J2k what is the statement that you use to call the rapid fire in the halo 5 gamepack??
User avatar
kenneth
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 181
Joined: Tue Nov 11, 2014 9:02 am

Re: Next GamePack?

Postby J2Kbr » Thu Oct 13, 2016 12:22 pm

just this:
Code: Select all
    // RAPIDFIRE
    if(get_val(XB1_RT)) {
        combo_run(RapidfireRight);
    }
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: Next GamePack?

Postby kenneth » Mon Oct 31, 2016 9:10 pm

ive noticed that the rapid fire makes the automatic weapons slower, is there a raid fire that will not mess with the automatic weapon speeds? if so thank you
User avatar
kenneth
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 181
Joined: Tue Nov 11, 2014 9:02 am

Re: Next GamePack?

Postby J2Kbr » Tue Nov 01, 2016 10:31 am

kenneth wrote:ive noticed that the rapid fire makes the automatic weapons slower, is there a raid fire that will not mess with the automatic weapon speeds? if so thank you

That is expected, as the fire button is being pressed and released automatically by the mod. You can use what we call "Press Sensitivity", which activates the rapidfire mod only when you fully press the fire trigger, this allow you half press the fire button and have fully auto weapons it their full speed when needed.
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: Next GamePack?

Postby kenneth » Tue Nov 01, 2016 9:10 pm

How would I write the if statment so when it's fully pressed it rapid fire is activated?
User avatar
kenneth
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 181
Joined: Tue Nov 11, 2014 9:02 am

Re: Next GamePack?

Postby The_Rabid_Taco » Tue Nov 01, 2016 9:16 pm

The code below will enter rapid fire if the right trigger is pressed 95% or higher. Adjust the 95 to whatever percent you want it at and it will only activate when pressed in that far.

Code: Select all
// RAPIDFIRE
    if(get_val(XB1_RT) >= 95) {
        combo_run(RapidfireRight);
    }
User avatar
The_Rabid_Taco
Major
Major
 
Posts: 1066
Joined: Wed Mar 16, 2016 6:04 pm
Location: Pensacola, FL

Re: Next GamePack?

Postby kenneth » Fri Nov 04, 2016 1:23 am

can anyone help me with when i press Y rapid fire is active on the RT? and when i press it again it turns off? because in halo 5 you start with a ar and pistol. So if you have the ar right when you start, rapid fire is disable and say you switch to the pistol or br by pressing Y the rapid fire is active. that would be a helpful script if somebody can make that. If somebody could make that, thats awesome!!!!
User avatar
kenneth
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 181
Joined: Tue Nov 11, 2014 9:02 am

Re: Next GamePack?

Postby The_Rabid_Taco » Fri Nov 04, 2016 3:26 pm

Try this out and let us know if it is along the lines of what you are looking for.

Code: Select all
// Used to toggle rapid fire on and off.  Set to off by default, change to TRUE for on by default.
int RapidFireToggle = FALSE;

main {
    // If Y is pressed change the state of the rapid fire toggle from true to false or false to true.
    if(event_press(XB1_Y)) RapidFireToggle = !RapidFireToggle;
    // If holding down the right trigger and rapid fire toggle is true, run the rapid fire combo.
    if(RapidFireToggle && get_val(XB1_RT)) combo_run(Rapid_Fire);
}

combo Rapid_Fire {
    set_val(XB1_RT, 100);
    wait(40); // Adjust here for how long the right trigger is held.
    set_val(XB1_RT, 0);
    wait(40); // Adjust here for how long the right trigger is released.
}
User avatar
The_Rabid_Taco
Major
Major
 
Posts: 1066
Joined: Wed Mar 16, 2016 6:04 pm
Location: Pensacola, FL

PreviousNext

Return to Titan One Device

Who is online

Users browsing this forum: No registered users and 145 guests