cocoyaw.LUA
MR VACBAN
Puerto Rico
[/url]


[/url]


Zurzeit offline
1 Spielausschluss | Informationen
308 Tag(e) seit dem letzten Ausschluss
cocoyaw.lua
-- Variables for anti-aim settings
local aa_mode = 0 -- 0 = Off, 1 = Static, 2 = Jitter, 3 = Desync Jitter
local jitter_offset = 0 -- Jitter range
local desync_angle = 58 -- Default desync angle

-- Function for static anti-aim (simple yaw inversion)
local function static_anti_aim(cmd)
cmd.viewangles.yaw = cmd.viewangles.yaw + 180 -- Reverse yaw
cmd.viewangles.pitch = 89 -- Keep pitch to avoid headshots
end

-- Function for jitter anti-aim (random yaw jitter)
local function jitter_anti_aim(cmd)
jitter_offset = math.random(-90, 90) -- Random jitter within a range of -90 to 90 degrees
cmd.viewangles.yaw = cmd.viewangles.yaw + 180 + jitter_offset -- Apply yaw jitter
cmd.viewangles.pitch = 89 -- Keep pitch at 89
end

-- Function for desync jitter anti-aim (random desync yaw)
local function desync_jitter_anti_aim(cmd)
jitter_offset = math.random(-45, 45) -- Small jitter range for desync
cmd.viewangles.yaw = cmd.viewangles.yaw + desync_angle + jitter_offset -- Add desync angle with jitter
cmd.viewangles.pitch = 89 -- Keep pitch stable
end

-- Function that executes every tick to apply the selected anti-aim
local function on_create_move(cmd)
if aa_mode == 1 then
static_anti_aim(cmd)
elseif aa_mode == 2 then
jitter_anti_aim(cmd)
elseif aa_mode == 3 then
desync_jitter_anti_aim(cmd)
end

-- Cancel any unintended movement
cmd.sidemove = 0
cmd.forwardmove = 0
end

-- Function to switch between different anti-aim modes with Z, X, and C keys
local function toggle_aa_mode(key)
if key == KEY_Z then
aa_mode = 1 -- Activate static anti-aim
print("Static Anti-Aim Activated")
elseif key == KEY_X then
aa_mode = 2 -- Activate jitter anti-aim
print("Jitter Anti-Aim Activated")
elseif key == KEY_C then
aa_mode = 3 -- Activate desync jitter anti-aim
print("Desync Jitter Anti-Aim Activated")
else
aa_mode = 0 -- Disable anti-aim
print("Anti-Aim Deactivated")
end
end

-- Function to adjust desync angle with Z, X, and C (optional customization)
local function adjust_desync(key)
if key == KEY_Z then
desync_angle = desync_angle + 10 -- Increase desync angle
print("Desync Angle Increased: " .. desync_angle)
elseif key == KEY_X then
desync_angle = desync_angle - 10 -- Decrease desync angle
print("Desync Angle Decreased: " .. desync_angle)
end
end

-- Register callback for switching anti-aim modes
client.register_callback("on_key", function(key)
toggle_aa_mode(key)
end)

-- Register callback for adjusting desync settings
client.register_callback("on_key", function(key)
adjust_desync(key)
end)

-- Main loop for applying the selected anti-aim mode
client.register_callback("on_create_move", on_create_move)
Lieblingsgruppe
We are who create new rules
452
Mitglieder
2
Im Spiel
37
Online
13
Im Chat
Lieblingsguide
Erstellt von - aimstar.kz | Wuzek^,,0=---^+ und 27V
183 Bewertungen
Ausgestelltes Artwork
.
6 5 1
Gangstayoda1990 9. Aug. um 5:10 
⠄⠄⠄⠄⢠⣿⣿⣿⣿⣿⢻⣿⣿⣿⣿⣿⣿⣿⣿⣯⢻⣿⣿⣿⣿⣆⠄⠄⠄
⠄⠄⣼⢀⣿⣿⣿⣿⣏⡏⠄⠹⣿⣿⣿⣿⣿⣿⣿⣿⣧⢻⣿⣿⣿⣿⡆⠄⠄
⠄⠄⡟⣼⣿⣿⣿⣿⣿⠄⠄⠄⠈⠻⣿⣿⣿⣿⣿⣿⣿⣇⢻⣿⣿⣿⣿⠄⠄
⠄⢰⠃⣿⣿⠿⣿⣿⣿⠄⠄⠄⠄⠄⠄⠙⠿⣿⣿⣿⣿⣿⠄⢿⣿⣿⣿⡄⠄
⠄⢸⢠⣿⣿⣧⡙⣿⣿⡆⠄⠄⠄⠄⠄⠄⠄⠈⠛⢿⣿⣿⡇⠸⣿⡿⣸⡇⠄
⠄⠈⡆⣿⣿⣿⣿⣦⡙⠳⠄⠄⠄⠄⠄⠄⢀⣠⣤⣀⣈⠙⠃⠄⠿⢇⣿⡇⠄
⠄⠄⡇⢿⣿⣿⣿⣿⡇⠄⠄⠄⠄⠄⣠⣶⣿⣿⣿⣿⣿⣿⣷⣆⡀⣼⣿⡇⠄
⠄⠄⢹⡘⣿⣿⣿⢿⣷⡀⠄⢀⣴⣾⣟⠉⠉⠉⠉⣽⣿⣿⣿⣿⠇⢹⣿⠃⠄
⠄⠄⠄⢷⡘⢿⣿⣎⢻⣷⠰⣿⣿⣿⣿⣦⣀⣀⣴⣿⣿⣿⠟⢫⡾⢸⡟⠄.
⠄⠄⠄⠄⠻⣦⡙⠿⣧⠙⢷⠙⠻⠿⢿⡿⠿⠿⠛⠋⠉⠄⠂⠘⠁⠞⠄⠄⠄
⠄⠄⠄⠄⠄⠈⠙⠑⣠⣤⣴⡖⠄⠿⣋⣉⣉⡁⠄⢾⣦⠄⠄⠄⠄⠄⠄⠄⠄
Millia 23. Mai um 13:00 
:arcadeheart:
メgo to sleepメ 30. März um 8:55 
                ⠀⠀⠀⠀ ⠀  🤍🤍  🌸🌸
           ⠀⠀⠀⠀⠀ ⠀  🤍     🌸     🌸
             ⠀⠀⠀⠀ ⠀  🤍                 🌸
                ⠀⠀⠀ ⠀  🤍        🌸
                   ⠀⠀⠀ ⠀  🤍  🌸
                       ⠀⠀  ⠀ 🤍
メgo to sleepメ 15. März um 9:50 
𓆩♡𓆪
メgo to sleepメ 23. Feb. um 7:40 
                ⠀⠀⠀⠀ ⠀  🤍🤍  🌸🌸
           ⠀⠀⠀⠀⠀ ⠀  🤍     🌸     🌸
             ⠀⠀⠀⠀ ⠀  🤍                 🌸
                ⠀⠀⠀ ⠀  🤍        🌸
                   ⠀⠀⠀ ⠀  🤍  🌸
                       ⠀⠀  ⠀ 🤍
メgo to sleepメ 21. Feb. um 12:26 
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
⣿⣿⡿⠋⣡⣤⣤⣄⡉⠻⠟⢉⣠⣤⣤⣌⠙⢿⣿⣿
⣿⡟⢀⣾⣿⣿⣿⣿⣿⣄⣠⣿⣿⣿⣿⣿⣷⡄⢻⣿
⣿⡇⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⢸⣿
⣿⣧⠘⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠃⣼⣿
⣿⣿⣧⡈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⢁⣼⣿⣿
⣿⣿⣿⣿⣦⡈⠻⣿⣿⣿⣿⣿⣿⠟⢁⣴⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣦⡈⠻⣿⣿⠟⢁⣴⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣿⣆⠈⠁⣰⣿⣿⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿