JavaScript:
const desync_on_e = function(){
if (!Input.IsKeyPressed(0x45)){
Cheat.ExecuteCommand("unbind e");
UI.SetValue("Anti-Aim", "Extra", "Pitch", 1);
UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Yaw offset", 0);
} else {
Cheat.ExecuteCommand("bind e +use");
UI.SetValue("Anti-Aim", "Extra", "Pitch", 0);
UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Yaw offset", 180);
}
}
const unload = function(){
Cheat.ExecuteCommand("bind e +use");
}
Cheat.RegisterCallback("Unload", "unload");
Cheat.RegisterCallback("CreateMove", "desync_on_e");
Лови.