-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
ВСЕМ ПРИВЕТ!
Сегодня начал делать js.В итоге все сделал и когда тестил не понимал почему не работают индикаторы.
Кто сможет помочь с постановкой кода в корд отпишите.
Сегодня начал делать js.В итоге все сделал и когда тестил не понимал почему не работают индикаторы.
Кто сможет помочь с постановкой кода в корд отпишите.
JavaScript:
UI.AddLabel("-------------INDICATORS--------------");
var screen_size = Global.GetScreenSize();
UI.AddCheckbox("Inverter Indicators")
UI.AddDropdown("Inverter indicators type", ["< >", "( )", "arrow+"]);
UI.AddColorPicker("Selected arrow color")
UI.AddColorPicker("Arrows color")
function isHeavyPistol(name)
{
if (name == "r8 revolver" || name == "desert eagle")
{
return true
}
}
function isAutoSniper(name)
{
if(name == "scar 20" || weapon_name == "g3sg1")
{
return true
}
}
function visibility ()
{
if (UI.GetValue("Script Items", "Inverter Indicators"))
{
UI.SetEnabled("Script Items", "Inverter indicators type", 1)
UI.SetEnabled("Script Items", "Selected arrow color", 1)
UI.SetEnabled("Script Items", "Arrows color", 1)
}
else
{
UI.SetEnabled("Script Items", "Inverter indicators type", 0)
UI.SetEnabled("Script Items", "Selected arrow color", 0)
UI.SetEnabled("Script Items", "Arrows color", 0)
}
}
Cheat.RegisterCallback('CreateMove', 'visibility');
function draw ()
{
isInverted = UI.IsHotkeyActive('Anti-Aim', 'Fake angles', 'Inverter');
invert_color = UI.GetColor("Script items", "Arrows color");
s_invert_color = UI.GetColor("Script items", "Selected arrow color");
invert_type = UI.GetValue("Script items", "Inverter indicators type");
if (invert_type == 0 && UI.GetValue("Script Items", "Inverter Indicators"))
{
Render.String(screen_size[0] /2 -50, screen_size[1] /2 -20, 1, "<", isInverted ? s_invert_color : invert_color, 4);
Render.String(screen_size[0] /2 +50, screen_size[1] /2 -20, 1, ">", !isInverted ? s_invert_color : invert_color, 4);
}
if (invert_type == 1 && UI.GetValue("Script Items", "Inverter Indicators"))
{
Render.String(screen_size[0] /2 -50, screen_size[1] /2 -20, 1, "(", isInverted ? s_invert_color : invert_color, 4);
Render.String(screen_size[0] /2 +50, screen_size[1] /2 -20, 1, ")", !isInverted ? s_invert_color : invert_color, 4);
}
if (invert_type == 2 && UI.GetValue("Script Items", "Inverter Indicators"))
{
font = Render.AddFont("Acta Symbols W95 Arrows", 20, 400);
Render.StringCustom(screen_size[0] /2 -50, screen_size[1] /2 -10, 1, "g", isInverted ? s_invert_color : invert_color, font);
Render.StringCustom(screen_size[0] /2 +50, screen_size[1] /2 -10, 1, "h", !isInverted ? s_invert_color : invert_color, font);
}
}
Global.RegisterCallback('Draw', 'draw');
UI.AddLabel("-------------PikaCord--------------");