var iExploitID = 0;
var bDoubleTapped = false;
var bShouldRecharge = false;
var ForceCharge = false;
var iLastShotTime = 0;
UI.AddCheckbox("DT Abuse");
UI.AddDropdown("DT Mode", ["Agressive", "Passive"]);
UI.SetValue( "Rage", "GENERAL", "Exploits", "Doubletap", 1 );
function on_ragebot_fire()
{
ragebot_target_exploit = Event.GetInt("exploit");
if (UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Tripletap"))
{
if (ragebot_target_exploit == 2)
{
UI.SetValue("Rage", "GENERAL", "Exploits", "Doubletap fast recovery", true);
}
else
{
UI.SetValue("Rage", "GENERAL", "Exploits", "Doubletap fast recovery", false);
}
}
}
function event_rbot_fire( ) {
iExploitID = Event.GetInt( "exploit" );
if ( !UI.GetValue( "Misc", "JAVASCRIPT", "Script Items", "Tripletap" ) )
return;
if ( iExploitID == 2 ) {
iLastShotTime = Global.Tickcount( );
bDoubleTapped = true;
UI.SetValue( "Rage", "GENERAL", "Exploits", "Doubletap", 0 );
bShouldRecharge = true;
}
ForceCharge = bShouldRecharge ? true : false;
if ( ForceCharge && Global.Tickcount( ) >= ( Global.TickInterval( ) * 10 + iLastShotTime ) )
UI.SetValue( "Rage", "GENERAL", "Exploits", "Doubletap", 1 );
}
function modecheck()
{
if(UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Tripletap Mode") == 0) { on_ragebot_fire(); }
if(UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Tripletap Mode") == 1) { event_rbot_fire(); }
}
Global.RegisterCallback("ragebot_fire", "modecheck");