JS-скрипт Ищу скрипт Can someone give me acatel indicator ? (otc3)

legacy king
Начинающий
Статус
Оффлайн
Регистрация
29 Апр 2021
Сообщения
156
Реакции[?]
17
Поинты[?]
1K
👁Вас заметили!👁
Пользователь
Статус
Оффлайн
Регистрация
20 Май 2021
Сообщения
502
Реакции[?]
110
Поинты[?]
2K
Последнее редактирование:
Новичок
Статус
Оффлайн
Регистрация
24 Авг 2021
Сообщения
1
Реакции[?]
0
Поинты[?]
0
Код:
Render.OutlineStringCustom = function(x, y, alignid, text, color, font) {
    Render.StringCustom(x - 1, y - 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x - 1, y, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x - 1, y + 1, alignid, text, [0, 0, 0, color[3]], font);

    Render.StringCustom(x, y + 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x, y - 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x + 1, y - 1, alignid, text, [0, 0, 0, color[3]], font);

    Render.StringCustom(x + 1, y, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x + 1, y + 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x, y, alignid, text, color, font);
 }

 const IsDormant = function() {
    enemies = Entity.GetEnemies()
    for(var i in enemies)
        if(Entity.IsDormant(enemies[i])) {
            return true
        }
    return false
}
const Acatel = function(){
    if (Entity.IsAlive(Entity.GetLocalPlayer())) {
    
   const font_smallfonts = Render.AddFont("Small Fonts", 5, 400);
   const IsLegitAA = UI.GetValue('Legit AA on E') && Input.IsKeyPressed(0x45);
   var screen_size = Global.GetScreenSize();
   var add_y = 0;
   IsFakeduck = UI.IsHotkeyActive("Extra", "Fake duck");
   IsMinimumdamage = UI.IsHotkeyActive("Misc", "JAVASCRIPT", "Script items", "Minimum damage on key");
   IsDoubleTap = UI.IsHotkeyActive("Rage", "GENERAL", "Exploits", "Doubletap");
   IsOSAA = UI.IsHotkeyActive("Rage", "GENERAL", "Exploits", "Hide shots");
   IsForceBaim = UI.IsHotkeyActive("Rage", "GENERAL", "General", "Force body aim");
   IsForceSafepoints = UI.IsHotkeyActive("Rage", "GENERAL", "General", "Force safe point");
   IsFreestanding = UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Auto direction")
   IsInverter = UI.IsHotkeyActive("Anti-Aim", "Fake angles", "Inverter");
   IsHideshots = UI.IsHotkeyActive("Rage", "GENERAL", "Exploits", "Hide shots");
   IsAutopeek = UI.IsHotkeyActive("Misc", "Auto peek")
   IsChargedOrNo = Exploit.GetCharge() == 1 ? "CHARGED" : "UNCHARGED"
   IsChargedOrNoColor = Exploit.GetCharge() == 1 ? [173, 209, 15, 255] : [255, 30, 30, 255]
   FakeYaw = IsLegitAA ? "LEGIT AA" : IsInverter ? "R" : "L"
   add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "ACATEL", [255, 255, 255, 255], font_smallfonts);
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "FAKE YAW:", [166, 196, 212, 255], font_smallfonts);
        add_y = add_y + 0
        Render.OutlineStringCustom(screen_size[0] / 2 - -39, screen_size[1] / 2 + add_y, 0, FakeYaw , [255, 255, 255, 255], font_smallfonts);}}
        if(IsHideshots) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "ONSHOT", [240, 158, 158, 255], font_smallfonts);}
        if(IsDoubleTap && IsAutopeek && IsFreestanding) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "IDEAL TICK:", [255, 255, 255, 255], font_smallfonts);
        Render.OutlineStringCustom(screen_size[0] / 2 - -42, screen_size[1] / 2 + add_y, 0, IsChargedOrNo, IsChargedOrNoColor, font_smallfonts);
        } else if(IsDoubleTap) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "DT", Exploit.GetCharge() == 1 ? [173, 209, 15, 255] : [255, 30, 30, 255] , font_smallfonts);}
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "BAIM", IsForceBaim ? [255, 255, 255, 255] : [255, 255, 255, 155], font_smallfonts);}
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 0
        Render.OutlineStringCustom(screen_size[0] / 2 - -22, screen_size[1] / 2 + add_y, 0, "SP", IsForceSafepoints ? [255, 255, 255, 255] : [255, 255, 255 ,155], font_smallfonts);}
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 0
        Render.OutlineStringCustom(screen_size[0] / 2 - -34, screen_size[1] / 2 + add_y, 0, "FS", IsFreestanding ? [255, 255, 255, 255] : [255, 255, 255 ,155], font_smallfonts);}
    

}
Cheat.RegisterCallback("Draw", "Acatel");
 
legacy king
Начинающий
Статус
Оффлайн
Регистрация
29 Апр 2021
Сообщения
156
Реакции[?]
17
Поинты[?]
1K
Код:
Render.OutlineStringCustom = function(x, y, alignid, text, color, font) {
    Render.StringCustom(x - 1, y - 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x - 1, y, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x - 1, y + 1, alignid, text, [0, 0, 0, color[3]], font);

    Render.StringCustom(x, y + 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x, y - 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x + 1, y - 1, alignid, text, [0, 0, 0, color[3]], font);

    Render.StringCustom(x + 1, y, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x + 1, y + 1, alignid, text, [0, 0, 0, color[3]], font);
    Render.StringCustom(x, y, alignid, text, color, font);
}

const IsDormant = function() {
    enemies = Entity.GetEnemies()
    for(var i in enemies)
        if(Entity.IsDormant(enemies[i])) {
            return true
        }
    return false
}
const Acatel = function(){
    if (Entity.IsAlive(Entity.GetLocalPlayer())) {
   
   const font_smallfonts = Render.AddFont("Small Fonts", 5, 400);
   const IsLegitAA = UI.GetValue('Legit AA on E') && Input.IsKeyPressed(0x45);
   var screen_size = Global.GetScreenSize();
   var add_y = 0;
   IsFakeduck = UI.IsHotkeyActive("Extra", "Fake duck");
   IsMinimumdamage = UI.IsHotkeyActive("Misc", "JAVASCRIPT", "Script items", "Minimum damage on key");
   IsDoubleTap = UI.IsHotkeyActive("Rage", "GENERAL", "Exploits", "Doubletap");
   IsOSAA = UI.IsHotkeyActive("Rage", "GENERAL", "Exploits", "Hide shots");
   IsForceBaim = UI.IsHotkeyActive("Rage", "GENERAL", "General", "Force body aim");
   IsForceSafepoints = UI.IsHotkeyActive("Rage", "GENERAL", "General", "Force safe point");
   IsFreestanding = UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Auto direction")
   IsInverter = UI.IsHotkeyActive("Anti-Aim", "Fake angles", "Inverter");
   IsHideshots = UI.IsHotkeyActive("Rage", "GENERAL", "Exploits", "Hide shots");
   IsAutopeek = UI.IsHotkeyActive("Misc", "Auto peek")
   IsChargedOrNo = Exploit.GetCharge() == 1 ? "CHARGED" : "UNCHARGED"
   IsChargedOrNoColor = Exploit.GetCharge() == 1 ? [173, 209, 15, 255] : [255, 30, 30, 255]
   FakeYaw = IsLegitAA ? "LEGIT AA" : IsInverter ? "R" : "L"
   add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "ACATEL", [255, 255, 255, 255], font_smallfonts);
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "FAKE YAW:", [166, 196, 212, 255], font_smallfonts);
        add_y = add_y + 0
        Render.OutlineStringCustom(screen_size[0] / 2 - -39, screen_size[1] / 2 + add_y, 0, FakeYaw , [255, 255, 255, 255], font_smallfonts);}}
        if(IsHideshots) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "ONSHOT", [240, 158, 158, 255], font_smallfonts);}
        if(IsDoubleTap && IsAutopeek && IsFreestanding) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "IDEAL TICK:", [255, 255, 255, 255], font_smallfonts);
        Render.OutlineStringCustom(screen_size[0] / 2 - -42, screen_size[1] / 2 + add_y, 0, IsChargedOrNo, IsChargedOrNoColor, font_smallfonts);
        } else if(IsDoubleTap) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "DT", Exploit.GetCharge() == 1 ? [173, 209, 15, 255] : [255, 30, 30, 255] , font_smallfonts);}
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 8
        Render.OutlineStringCustom(screen_size[0] / 2 - -1, screen_size[1] / 2 + add_y, 0, "BAIM", IsForceBaim ? [255, 255, 255, 255] : [255, 255, 255, 155], font_smallfonts);}
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 0
        Render.OutlineStringCustom(screen_size[0] / 2 - -22, screen_size[1] / 2 + add_y, 0, "SP", IsForceSafepoints ? [255, 255, 255, 255] : [255, 255, 255 ,155], font_smallfonts);}
        if (Entity.IsAlive(Entity.GetLocalPlayer())) {
        add_y = add_y + 0
        Render.OutlineStringCustom(screen_size[0] / 2 - -34, screen_size[1] / 2 + add_y, 0, "FS", IsFreestanding ? [255, 255, 255, 255] : [255, 255, 255 ,155], font_smallfonts);}
   

}
Cheat.RegisterCallback("Draw", "Acatel");
y menya spizdil xD
 
Сверху Снизу