Памагите
-
Автор темы
- #1
Мне просто понравились индикаторы :l
Смысла 0, делать правда подобные
EXP - Doubletap
OS - Hide Shots
DMG - Min damage
Смысла 0, делать правда подобные
EXP - Doubletap
OS - Hide Shots
DMG - Min damage
JavaScript:
ui.add_checkbox("Indicators", "indicators")
vars.set_bool("js.indicators", true)
var size = render.get_screen_size();
register_callback("render", function() {
if (!vars.get_bool("js.indicators")) return;
var x_ind = size[0]
var y_ind = size[1]
// Вверх
render.filled_rect([x_ind - 1005, y_ind - 540], [90, 22], [17, 17, 17, 255], 5)
render.rect([x_ind - 1005, y_ind - 540], [90, 22], [255, 92, 119, 255], 4)
render.text([x_ind - 995, y_ind - 539], [255, 255, 255, 255], 0, 4, "w1ndy-yaw")
// Низ
render.filled_rect([x_ind - 1005, y_ind - 515], [90, 21], [17, 17, 17, 50], 5)
// Обводка снизу render.rect([x_ind - 1005, y_ind - 515], [90, 22], [255, 92, 119, 255], 4)
if (vars.is_bind_active("doubletap")) {
render.text([x_ind - 1003, y_ind - 514], [255, 92, 119, 255], 0, 4, "EXP");
} else {
render.text([x_ind - 1003, y_ind - 514], [88, 88, 88, 255], 0, 4, "EXP");
}
if (vars.is_bind_active("hide_shots")) {
render.text([x_ind - 972, y_ind - 514], [255, 92, 119, 255], 0, 4, "OS");
} else {
render.text([x_ind - 972, y_ind - 514], [88, 88, 88, 255], 0, 4, "OS");
}
if (vars.is_bind_active("override_damage")) {
render.text([x_ind - 948, y_ind - 514], [255, 92, 119, 255], 0, 4, "DMG");
} else {
render.text([x_ind - 948, y_ind - 514], [88, 88, 88, 255], 0, 4, "DMG");
}
})