Вопрос Хелп

Начинающий
Статус
Оффлайн
Регистрация
17 Мар 2021
Сообщения
40
Реакции[?]
12
Поинты[?]
0
Может кто добавить чекбок при включение которого включался вот этот код:
Код:
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")

Просто я в этом нечего не понимаю :)
Заранее спасибо кто поможет :)
 
Государственная служба РФ
Пользователь
Статус
Оффлайн
Регистрация
26 Дек 2018
Сообщения
361
Реакции[?]
70
Поинты[?]
0
JavaScript:
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")
 
Начинающий
Статус
Оффлайн
Регистрация
17 Мар 2021
Сообщения
40
Реакции[?]
12
Поинты[?]
0
JavaScript:
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")
Спасибо большое :)
 
Сверху Снизу