Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Вопрос Хелп

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
17 Мар 2021
Сообщения
40
Реакции
12
Может кто добавить чекбок при включение которого включался вот этот код:
Код:
Expand Collapse Copy
function RandomLimit(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 17))
}

function RandomJitter(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 102))
}

function RandomTriggerlimit(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 11))
}

function RandomFakeLag() {
    UI.SetValue("Anti-Aim", "Fake-Lag", "Limit", (RandomLimit(1, 17)));
    UI.SetValue("Anti-Aim", "Fake-Lag", "Jitter", (RandomJitter(1, 102)));
    UI.SetValue("Anti-Aim", "Fake-Lag", "Trigger limit", (RandomTriggerlimit(1, 11)));
}

Cheat.RegisterCallback("Draw", "RandomFakeLag")


Просто я в этом нечего не понимаю :)
Заранее спасибо кто поможет :)
 
JavaScript:
Expand Collapse Copy
function RandomLimit(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 17))
}

function RandomJitter(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 102))
}

function RandomTriggerlimit(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 11))
}

function RandomFakeLag() {
    if (UI.GetValue("Script items", "Random FL")) {
    UI.SetValue("Anti-Aim", "Fake-Lag", "Limit", (RandomLimit(1, 17)));
    UI.SetValue("Anti-Aim", "Fake-Lag", "Jitter", (RandomJitter(1, 102)));
    UI.SetValue("Anti-Aim", "Fake-Lag", "Trigger limit", (RandomTriggerlimit(1, 11)));
    }
}

UI.AddCheckbox("Random FL");

Cheat.RegisterCallback("CreateMove", "RandomFakeLag")
 
JavaScript:
Expand Collapse Copy
function RandomLimit(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 17))
}

function RandomJitter(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 102))
}

function RandomTriggerlimit(Min, Max) {
    Min = Math.ceil(Min);
    Max = Math.floor(Max);
    return Math.floor(Math.random() * (Min + Max - 1, 11))
}

function RandomFakeLag() {
    if (UI.GetValue("Script items", "Random FL")) {
    UI.SetValue("Anti-Aim", "Fake-Lag", "Limit", (RandomLimit(1, 17)));
    UI.SetValue("Anti-Aim", "Fake-Lag", "Jitter", (RandomJitter(1, 102)));
    UI.SetValue("Anti-Aim", "Fake-Lag", "Trigger limit", (RandomTriggerlimit(1, 11)));
    }
}

UI.AddCheckbox("Random FL");

Cheat.RegisterCallback("CreateMove", "RandomFakeLag")

Спасибо большое :)
 
Назад
Сверху Снизу