Page 2 of 2

Re: Questions for a Titan One Noob

PostPosted: Thu Feb 04, 2016 4:57 pm
by UK_Wildcats
macnmore wrote:UK_Wildcats_Fans, I was able to tweak your script for default button layout and it mostly works great...but I have a couple questions. When I enable Jitter, should I first disable Rapid Fire or will it do that automatically? Is there a way to decrease the Jitter? When it's turned on with the XR2 for BO3, it's nearly uncontrollable. Also, with Jitter turned on, it sometimes randomly reloads before I'm out of ammo or it will switch to my secondary weapon. Is that fixable? The other question I have, when I turn on Rapid Fire by holding ADS + Left on the DPad, if I then hold ADS and press Right on the DPad, will that increase the SPS? The script says Rapid Fire Cycling...but I'm not sure what that means exactly.
Thanks



It will disable rapid fire automatically. The jitter timing is adjusted under the Combo Jitter. See the below. Ignore the green parts that are commented out. They are from an original version and is not used now. There are a few Jitter topics on these forums that you can review. I don't use jitter, and I added it for other members. Part of jitter is to swap weapons to make it work really fast. Unfortunately, that is part of the side affects of Jitter.

Code: Select all
combo Jitter {
/*
    set_val(RELOAD, 100);
    set_val(SWAP_WEAPONS, 100);
    set_val(SWAP_WEAPONS, 100);
    wait(HoldTime2);
    set_val(RELOAD, 0);
    set_val(SWAP_WEAPONS, 0);
    set_val(SWAP_WEAPONS, 0);
    wait(RestTime2);
   set_val(RELOAD, 0);
    set_val(SWAP_WEAPONS, 0);
    set_val(SWAP_WEAPONS, 0);
*/

    set_val(RELOAD, 100);
    set_val(SWAP_WEAPONS, 100);
    wait(HoldTime2);
    set_val(SWAP_WEAPONS, 0);
    wait(RestTime2);
    set_val(SWAP_WEAPONS, 100);
    wait(HoldTime2);
    set_val(SWAP_WEAPONS, 0);
    wait(RestTime2);
}


Holding ADS + RIGHT on the DPAD will cycle between 5 various rapid fire settings, which you can configure in the script. HoldTime is the amount of time the fire button is pressed. RestTime is the time it waits before pressing the fire button again.

Code: Select all
       if(RapidFireCounter == 1){HoldTime = 10; RestTime = 10;} // Preset #1
       if(RapidFireCounter == 2){HoldTime = 15; RestTime = 15;} // Preset #2
       if(RapidFireCounter == 3){HoldTime = 20; RestTime = 20;} // Preset #3
       if(RapidFireCounter == 4){HoldTime = 25; RestTime = 25;} // Preset #4
       if(RapidFireCounter == 5){HoldTime = 30; RestTime = 30;} // Preset #5