-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
JavaScript:
UI.AddCheckbox("Inverter arrows");
UI.AddColorPicker("color");
screen = Global.GetScreenSize();
function draw () {
if (UI.GetValue('Misc', 'JAVASCRIPT', 'Script items', 'Inverter arrows')) {
if (!World.GetServerString()) return;
x = screen[0];
y = screen[1];
inverted = UI.IsHotkeyActive("Anti-Aim", "Fake angels", "Inverter");
font = Render.AddFont("Acta Symbols W95 Arrows", 15, 100);
color = UI.GetColor("Script items", "color");
Render.StringCustom(x / 2 + 55, y / 2 * 0.982, 1, "h", [40, 40, 40, color[3]], font)
Render.StringCustom(x / 2 - 55, y / 2 * 0.982, 1, "g", [40, 40, 40, color[3]], font)
if (inverted) {
Render.StringCustom(x / 2 + 55, y / 2 * 0.982, 1, "h", [color[0], color[1], color[2], 255], font);
} else {
Render.StringCustom(x / 2 - 55, y / 2 * 0.982, 1, "g", [color[0], color[1], color[2], 255], font);
}
}
}
Cheat.RegisterCallback("Draw", "draw")