[Leak] DANGO Mafia Lua AAA!
Here it is (put this in your aimboggen):
if targ:EyeAngles().p > 89 then
AimPos = AimPos + Vector(6, 9, 0)
elseif targ:EyeAngles().p < -89 then
AimPos = AimPos - Angle(Vector(0, 5, 0))
end
Example:
Code:
function cd.Aimb0t(cmd)
if cd.vars["aim_aimbot"] and cd.targ != nil then
local AimPos = cd.GetAimPos(cd.targ, cmd)
AimPos.p = math.NormalizeAngle(AimPos.p)
AimPos.y = math.NormalizeAngle(AimPos.y)
if cd.targ:EyeAngles().p > 89 then
AimPos = AimPos + Vector(6, 9, 0)
elseif cd.targ:EyeAngles().p < -89 then
AimPos = AimPos - Angle(Vector(0, 5, 0))
end
cmd:SetViewAngles(AimPos)
cd.Attack(cmd)
end
end