Начинающий
-
Автор темы
- #1
Кто сможет сделать что бы по кнопке включалась.
multiplierOptions = [-2, -1, 1, 2]; function aaLoop() { AntiAim.SetOverride(1); AntiAim.SetFakeOffset(getRandomIntInclusive(-10, 24)); AntiAim.SetRealOffset(getRandomIntInclusive(5, 24) * 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; } Cheat.RegisterCallback("CreateMove", "aaLoop"); |