Типо unhittable аа, хотя по факту это десинк рандомайзер
Код:
Cheat.RegisterCallback("CreateMove", "aaLoop"); [?code}
multiplierOptions = [-2, -1, 1, 2];
function aaLoop() {
AntiAim.SetOverride(1);
AntiAim.SetFakeOffset(getRandomIntInclusive(20, 40));
AntiAim.SetRealOffset(getRandomIntInclusive(30, 50) * multiplierOptions[getRandomIntInclusive(0, multiplierOptions.length)]);
}
function getRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min; //The maximum is inclusive and the minimum is inclusive
}