-
Автор темы
- #1
JavaScript:
UI.AddCheckbox("Custom Anti-Aim");
UI.AddSliderInt("Real Offset", -60, 60);
UI.AddSliderInt("Fake Offset", -60, 60);
UI.AddSliderInt("LBY Offset", -90, 90);
UI.AddCheckbox("Low Delta on Slow Walk");
//CUSTOM ANTI-AIM
function customantiaim()
{
realoffset = UI.GetValue("Script items", "Real Offset")
fakeoffset = UI.GetValue("Script items", "Fake Offset")
lbyoffset = UI.GetValue("Script items", "LBY Offset")
if(UI.GetValue("Script items", "Custom Anti-Aim"))
{
UI.SetValue("Script items", "Low Delta on Slow Walk", "Enabled", false);
AntiAim.SetOverride(1);
AntiAim.SetFakeOffset(fakeoffset);
AntiAim.SetRealOffset(realoffset);
AntiAim.SetLBYOffset(lbyoffset);
}
else
{
AntiAim.SetOverride(0);
AntiAim.SetFakeOffset(0);
AntiAim.SetRealOffset(0);
AntiAim.SetLBYOffset(0);
UI.SetValue("Script items", "Low Delta on Slow Walk", "Enabled", true);
}
}
Cheat.RegisterCallback("CreateMove", "customantiaim");
//LOW DELTA
function LD()
{
yaw_cache = UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Yaw offset");
jitter_cache = UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Jitter offset");
localplayer_index = Entity.GetLocalPlayer( );
if (UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Low Delta on Slow Walk") && UI.IsHotkeyActive("Anti-Aim", "Extra", "Slow walk"))
{
UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Yaw offset", 10);
UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Jitter offset", 0);
UI.SetValue("Script items", "Real Offset", 0)
UI.SetValue("Script items", "Fake Offset", 0)
UI.SetValue("Script items", "LBY Offset", 0)
AntiAim.SetOverride(1);
AntiAim.SetFakeOffset(0);
AntiAim.SetRealOffset(-17);
}
else
{
UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Yaw offset", yaw_cache);
UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Jitter offset", jitter_cache);
AntiAim.SetOverride(0);
}
}
Cheat.RegisterCallback("CreateMove", "LD");