-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
local username = Cheat.GetCheatUserName()
local version = Http.Get("https://pastebin.com/raw/EcFmeJBg")
local lastupdate = Http.Get("https://pastebin.com/raw/Scg4CpBG")
local globals = {
yaw_base = Menu.FindVar('Aimbot', 'Anti Aim', 'Main', 'Yaw Base'),
yaw_add = Menu.FindVar('Aimbot', 'Anti Aim', 'Main', 'Yaw Add'),
yaw_modifier = Menu.FindVar('Aimbot', 'Anti Aim', 'Main', 'Yaw Modifier'),
modifier_degree = Menu.FindVar('Aimbot', 'Anti Aim', 'Main', 'Modifier Degree'),
left_limit = Menu.FindVar('Aimbot', 'Anti Aim', 'Fake Angle', 'Left Limit'),
right_limit = Menu.FindVar('Aimbot', 'Anti Aim', 'Fake Angle', 'Right Limit'),
double_tap = Menu.FindVar("Aimbot", "Ragebot", "Exploits", "Double Tap"),
fake_lag = Menu.FindVar("Aimbot", "Anti Aim", "Fake Lag", "Limit"),
leg_movement = Menu.FindVar("Aimbot", "Anti Aim", "Misc", "Leg Movement"),
slow_motion = Menu.FindVar("Aimbot", "Anti Aim", "Misc", "Slow Walk"),
inverter = Menu.FindVar("Aimbot", "Anti Aim", "Fake Angle", "Inverter");
min_dmg = Menu.FindVar('Aimbot','Ragebot','Accuracy','Minimum Damage')
}
Menu.Text("pandora", "Hello " .. username .. "!")
Menu.Text("pandora", "Current version: " .. version .. "")
Menu.Text("pandora", "Last update: " .. lastupdate .. "")
local dababy = Menu.Combo("pandora", "Tab Selection", {"Global", "Anti-Aim", "Visuals", "Misc"}, 0)
local aa = Menu.Switch("Anti-Aim", "Enable Anti-Aim", false)
local prefer = Menu.Switch("Ragebot", "Prefer Head", false)
local priority = Menu.SliderInt("Ragebot", "Priority", 0, 0, 100)
local modes = Menu.Combo("Anti-Aim", "Anti-Aim Modes", {"Tank", "Smart"}, 0)
local doubletap = Menu.Switch("Doubletap", "Override Doubletap Speed", false)
local doubletapspeed = Menu.SliderInt("Doubletap", "Doubletap Speed", 0, 10, 17)
local recharge = Menu.Switch("Doubletap", "Instant Recharge", false)
local fakelag = Menu.Combo("Fake Lag", "FakeLag Modes", {"Off", "Smart", "Randomized"}, 0)
local fucker = Menu.Switch("Miscellaneous", "Leg Fucker", false)
local tpkey = Menu.Switch("Miscellaneous", "Teleport on key", false)
local lastlegfucker
local a, b = 0, false
Cheat.RegisterCallback('prediction', function(cmd)
if recharge:GetBool() then
Exploits.ForceCharge()
end
if prefer:GetBool() then
--taken from api documentation
local entity = EntityList.GetClientEntity(EngineClient.GetLocalPlayer())
local player = entity:GetPlayer()
local nigger = player:EntIndex()
RageBot.SetHitboxPriority(nigger, 1, priority:GetInt())
end
if doubletap:GetBool() then
--taken from api documentation
Exploits.OverrideDoubleTapSpeed(doubletapspeed:GetInt())
end
if tpkey:GetBool() then
--taken from api documentation
Exploits.ForceTeleport()
end
if fucker:GetBool() then
globals.leg_movement:SetInt(Utils.RandomInt(1,2))
end
if aa:GetBool() and modes:GetInt() == 0 then
globals.modifier_degree:SetInt(Utils.RandomInt(69, 75))
globals.yaw_add:SetInt(1)
local degree = globals.modifier_degree:GetInt()
globals.left_limit:SetInt(Utils.RandomInt(15,30))
globals.right_limit:SetInt(Utils.RandomInt(25,40))
end
if aa:GetBool() and modes:GetInt() == 1 then
globals.modifier_degree:SetInt(Utils.RandomInt(slider1:GetInt(), slider2:GetInt()))
globals.yaw_add:SetInt(Utils.RandomInt(slider3:GetInt(), slider4:GetInt()))
local desync = globals.modifier_degree:GetInt()
globals.left_limit:SetInt(desync)
globals.right_limit:SetInt(desync)
end
if aa:GetBool() and modes:GetInt() == 2 then
globals.modifier_degree:SetInt(Utils.RandomInt(6, 15))
globals.left_limit:SetInt(Utils.RandomInt(15,30))
globals.right_limit:SetInt(Utils.RandomInt(30,60))
globals.yaw_add:SetInt(Utils.RandomInt(-2,4))
end
if dababy:GetInt() == 1 and fakelag:GetInt() == 1 then
globals.fake_lag:SetInt(Utils.RandomInt(9, 16))
end
end)
Cheat.RegisterCallback("draw", function()
end)
local ui_callback = function()
aa:SetVisible(dababy:GetInt() == 1)
modes:SetVisible(aa:GetBool() and dababy:GetInt() == 1)
fakelag:SetVisible(dababy:GetInt() == 3)
fucker:SetVisible(dababy:GetInt() == 3)
tpkey:SetVisible(dababy:GetInt() == 3)
doubletap:SetVisible(dababy:GetInt() == 0)
doubletapspeed:SetVisible(dababy:GetInt() == 0 and doubletap:GetBool())
prefer:SetVisible(dababy:GetInt() == 0)
priority:SetVisible(dababy:GetInt() == 0 and prefer:GetBool())
recharge:SetVisible(dababy:GetInt() == 0)
end
ui_callback()
aa:RegisterCallback(ui_callback)
modes:RegisterCallback(ui_callback)
dababy:RegisterCallback(ui_callback)
fakelag:RegisterCallback(ui_callback)
fucker:RegisterCallback(ui_callback)
doubletap:RegisterCallback(ui_callback)
doubletapspeed:RegisterCallback(ui_callback)
prefer:RegisterCallback(ui_callback)
priority:RegisterCallback(ui_callback)
recharge:RegisterCallback(ui_callback)