Aimlock 85 Head ?
Aimlock 85 Head ?
// CONFIGURATION
// Legit Mode:
// 0 = Off
// 1 = On
let legitModePercent = 0
// Activation Key:
let scriptToggleKey = "Z"
// WEAPON
let weapons = [
"M4A1",
"AK47",
"M14",
"SCAR",
"GROZA",
"SKS",
"M249",
"FAMAS",
"SVD",
"XM8",
"M60",
"AN94",
"PLASMA",
"AUG",
"PARAFAL",
"WOODPECKER",
"KORD",
"KINGFISHER",
"GROZA-X",
"M249-X",
"SVD-Y",
"G36",
"AC80",
"ARMAESCUDO",
"M1887",
"M1887-X",
"SPAS12",
"M1014",
"MAG-7",
"CHARGEBUSTER",
"TROGON",
"UMP",
"MP5",
"VSS",
"MP40",
"P90",
"CG15",
"THOMPSON",
"BIZON",
"VECTOR",
"MAC10",
"USP",
"M1873",
"M500",
"M1979",
"USP-2",
"MINIUZI",
"KAR98K"
]
// RETICLE
// WEAPON CONFIGURATION
// Accessories
let accessory1 = "Suppressor"
let accessory2 = "Extended Mag A"
let accessory3 = "Grip Tape"
// Modifiers
let modifier1 = "No Stock"
let modifier2 = "Lightweight Barrel"
let modifier3 = "Fast Reload"
// CODE
// Apply recoil
var recoilX = 0
var recoilY = 0
if getWeaponRecoilX() > 0 {
recoilX = -getWeaponRecoilX()
}
if getWeaponRecoilY() > 0 {
recoilY = -getWeaponRecoilY()
}
setMouseX(x: recoilX)
setMouseY(y: recoilY)
}
}