-
Автор темы
- #1
this is a ghetto fix for not having psilent (ty badster & swiss)
ps set your yaw to zero + you have to hold use key to throw grenade
ps set your yaw to zero + you have to hold use key to throw grenade
Код:
local ref_rage = gui.Reference("RAGEBOT")
local tab = gui.Tab(ref_rage, "our_tab", "best lua")
local anti_aim = gui.Checkbox(tab, "custom_antiaim", "Anti-Aim", true)
callbacks.Register("CreateMove", function(cmd)
if not anti_aim:GetValue() then return end
local original_angles = cmd:GetViewAngles()
local buttons = cmd:GetButtons()
if bit.band(buttons, 0x20) ~= 0 then return end
cmd:SetViewAngles(EulerAngles(89, original_angles.y + 180, 0))
end)
Последнее редактирование: