Вопрос Переделайте это пожайлуста под V

Начинающий
Статус
Оффлайн
Регистрация
19 Мар 2021
Сообщения
29
Реакции[?]
0
Поинты[?]
0
function getPlayerHealth(index) {
return Entity.GetProp(index, "CPlayerResource", "m_iHealth");
}

function useful() {
var body = UI.IsHotkeyActive("Rage", "GENERAL", "General", "Force body aim")
enemy = Ragebot.GetTarget()
healh = getPlayerHealth(enemy)
if (healh < 91) {
if (!body) {
UI.ToggleHotkey("Rage", "GENERAL", "General", "Force body aim")
}
}
else {
if (body) {
UI.ToggleHotkey("Rage", "GENERAL", "General", "Force body aim")
}
}
}
Cheat.RegisterCallback("CreateMove", "useful")
 
Nike.lua
Олдфаг
Статус
Оффлайн
Регистрация
13 Окт 2020
Сообщения
2,747
Реакции[?]
1,465
Поинты[?]
2K
function getPlayerHealth(index) {
return Entity.GetProp(index, "CPlayerResource", "m_iHealth");
}

function useful() {
var body = UI.IsHotkeyActive("Rage", "GENERAL", "General", "Force body aim")
enemy = Ragebot.GetTarget()
healh = getPlayerHealth(enemy)
if (healh < 91) {
if (!body) {
UI.ToggleHotkey("Rage", "GENERAL", "General", "Force body aim")
}
}
else {
if (body) {
UI.ToggleHotkey("Rage", "GENERAL", "General", "Force body aim")
}
}
}
Cheat.RegisterCallback("CreateMove", "useful")
ебаный рот

JavaScript:
function safe()
{
    const target = Ragetbot.GetTarget();
    if (!target)
        return;

    health = Entity.GetProp(target, "CBasePlayer", "m_iHealth");

    if (health < 91)
        Ragebot.ForceTargetSafety(target);
}

Cheat.RegisterCallback("CreateMove", "safe")
 
Сверху Снизу