-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Вот Палёные Индикаторы Gamesense Ну хоть что-то
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.rect([x_ind - 1593, y_ind - 314], [58, 81], [235, 246, 140, 255], 4)
if (vars.is_bind_active("doubletap")) {
render.text([x_ind - 1590, y_ind - 314], [235, 246, 190, 255], 200, 3, "DT");
} else {
render.text([x_ind - 1590, y_ind - 314], [0, 0, 255, 255], 200, 3, "DT");
}
if (vars.is_bind_active("hide_shots")) {
render.text([x_ind - 1590, y_ind - 295], [219, 200, 120, 255], 200, 3, "HS");
} else {
render.text([x_ind - 1590, y_ind - 295], [0, 0, 255, 255], 200, 3, "HS");
}
if (vars.is_bind_active("fake_duck")) {
render.text([x_ind - 1590, y_ind - 275], [1, 255, 120, 255], 200, 3, "DUCK");
} else {
render.text([x_ind - 1590, y_ind - 275], [0, 0, 255, 255], 200, 3, "DUCK");
}
if (vars.is_bind_active("override_damage")) {
render.text([x_ind - 1590, y_ind - 255], [230, 230, 230, 255], 200, 3, "MDG");
} else {
render.text([x_ind - 1590, y_ind - 255], [0, 0, 255, 255], 200, 3, "MDG");
}
})