-
Автор темы
- #1
Я вас прошу, помогите, почему данная жс не работает? Вот сам скрипт:
JavaScript:
UI.AddCheckbox("Meme AA");
UI.AddLabel(" M3M3 44 ")
if (UI.GetValue("Meme AA") == true) {
multiplierOptions = [-2, -1, 1, 2];
}
function aaLoop() {
if (Input.IsKeyPressed(0xA0))
{
AntiAim.SetFakeOffset(getRandomIntInclusive(6, -6));
AntiAim.SetRealOffset(getRandomIntInclusive(-38, 38) * multiplierOptions[getRandomIntInclusive(0, multiplierOptions.length)]);
}
function onunload() {
AntiAim.SetOverride(0)
}
Cheat.RegisterCallback("Unload", "onunload")
Cheat.RegisterCallback("CreateMove","aaLoop");