JS-скрипт Neverlose watermark [OT4/OTC4]

Эксперт
Статус
Оффлайн
Регистрация
22 Мар 2020
Сообщения
2,187
Реакции[?]
484
Поинты[?]
3K
Код:
const watermark = function() {
    const user = Cheat.GetUsername();
    const server = World.GetServerString();
    const ping = Math.round(Local.Latency() * 1000 - 16);
    const now = new Date();
    const hours = now.getHours(), mins = now.getMinutes(), secs = now.getSeconds();
    const time = (hours < 10 ? "0" + hours : hours) + ":" + (mins < 10 ? "0" + mins : mins) + ":" + (secs < 10 ? "0" + secs : secs);
    if(ping < 1) ping = 0;
    if(!server != "") server = "offline";
    const font = Render.GetFont("MuseoSansCyrl-900.ttf", 13, true);
    const font1 = Render.GetFont("MuseoSansCyrl-900.ttf", 13, true);
    const text = "|  "+ user +"  |  "+ ping +" ms  |  "+ server +"  |  "+ time +"";
    const w = Render.TextSize(text, font)[0] + 40;
    const x = Global.GetScreenSize()[0];
    x = x - w - 10;
    Render.FilledRect(x, 9, w - 2, 27, [11, 11, 20, 200]);
    Render.FilledRect(x - 1, 10, w, 25, [11, 11, 20, 200]);
    Render.String(x + 33, 14, 0, text, [255, 255, 255, 255], font);
    Render.String(x + 6, 15, 0, "NL", [34, 179, 246, 255], font1);
    Render.String(x + 7, 14, 0, "NL", [255, 255, 255, 255], font1);
}
Cheat.RegisterCallback("Draw", "watermark");
creator prince1337 , я просто переписал скрипт ( ЗАЕБАЛСЯ УЖЕ ЭТО ПИСАТЬ)
1634162003459.png
 

Вложения

Сверху Снизу