JS-скрипт [REQUEST] AntiAim OFF on round end

Начинающий
Статус
Оффлайн
Регистрация
29 Дек 2019
Сообщения
4
Реакции[?]
0
Поинты[?]
0
Hi,
can someone give me or make js that disable antiaim on round end? Thanks.


sorry for not speaking russian because when i tried to translate this to russian language it was pure shit.
 
Забаненный
Статус
Оффлайн
Регистрация
16 Ноя 2020
Сообщения
17
Реакции[?]
0
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
JavaScript:
function roundEndListener() {
    if (UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Disable aa on round end"))
        UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Enabled", false)
  
    if (UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Disable fakelag on round end"))
        UI.SetValue("Anti-Aim", "Fake-Lag", "Enabled", false)
}
function roundStartListener(){
    if (UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Disable aa on round end"))
        UI.SetValue("Anti-Aim", "Rage Anti-Aim", "Enabled", true)
  
    if (UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Disable fakelag on round end"))
        UI.SetValue("Anti-Aim", "Fake-Lag", "Enabled", true)
}

function main() {
    UI.AddCheckbox("Disable aa on round end");
    UI.AddCheckbox("Disable fakelag on round end");
  
    Global.RegisterCallback('round_end', 'roundEndListener');
    Global.RegisterCallback('round_start', 'roundStartListener');
}

main();
 
Сверху Снизу