Тинкера убили(((((
-
Автор темы
- #1
Просто не загружается в кряке, когда тыкаешь тип на название оно сразу же выключается (не шарю в этом)
Код:
var tick = 0;
UI.AddCheckbox(["Rage", "Exploits", "General"],"Log DT Speed");
function fire(){
if (UI.GetValue(["Rage", "Exploits", "General", "Log DT Speed"])) {
var e = Event.GetInt("exploit");
if (UI.GetValue(["Rage", "Exploits", "Keys", "Double tap"])) {
if (e > 0) {
tick = Globals.Tickcount();
} else if (tick != 0 && (Globals.Tickcount() - tick) < 16) {
Cheat.Print("DT speed: " + (Globals.Tickcount() - tick).toString() + " tick(s)\n");
tick = 0;
}
}
}
}
Cheat.RegisterCallback("ragebot_fire","fire");