JS-скрипт Acid tech old style watermark and keybind

Эксперт
Статус
Оффлайн
Регистрация
22 Мар 2020
Сообщения
2,187
Реакции[?]
484
Поинты[?]
3K
Код:
UI.AddMultiDropdown("indicators", ["watermark", "keybinds"]);
UI.AddColorPicker("color");

const screen_size = Global.GetScreenSize();
var stored = false;
var x_offs = 0;
var y_offs = 0;

UI.AddSliderInt("binds x", 0, screen_size[0]);
UI.AddSliderInt("binds y", 0, screen_size[1]);
UI.SetEnabled("Script items", "binds x", false);
UI.SetEnabled("Script items", "binds y", false);

const get_dropdown_value = function(value, index){
    const mask = 1 << index;
    return value & mask ? true : false;
}

const in_bounds = function(vec, x, y, x2, y2) {
    return (vec[0] > x) && (vec[1] > y) && (vec[0] < x2) && (vec[1] < y2)
}

const watermark = function() {
    const user = Cheat.GetUsername();
    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);
    const font = Render.AddFont("Calibri", 10, 100);
    const color = UI.GetColor("Script items", "color");
    const text = "acid.tech [beta] | "+ user +" | ";
    if (World.GetServerString() != ""){text += ""+ ping +" ms | " + Globals.Tickrate() + " tick | "; }
    text += time;
    const w = Render.TextSizeCustom(text, font)[0] + 10;
    const x = screen_size[0];
    x = x - w - 10;
 
    Render.FilledRect(x, 12, w, 18, [0, 0, 0, color[3]]);
    Render.StringCustom(x + 5, 13, 0, text, [255, 255, 255, 255], font);

    Render.GradientRect(x    , 10, w/2, 2, 2, [55, 177, 218/*55, 177, 218*/, 255], [203, 70, 205/*203, 70, 205*/, 255]);
    Render.GradientRect(x+ 98, 10, w/2, 2, 2, [203, 70, 205/*203, 70, 205*/, 255], [204, 227, 53/*204, 227, 53*/, 255]);
    if (World.GetServerString()){
        Render.GradientRect(x    , 10, w/2, 2, 2, [55, 177, 218/*55, 177, 218*/, 255], [203, 70, 205/*203, 70, 205*/, 255]);
        Render.GradientRect(x+ 141, 10, w/2, 2, 2, [203, 70, 205/*203, 70, 205*/, 255], [204, 227, 53/*204, 227, 53*/, 255]);}
}

const keybinds = function() {
var keybinds = [];
if (UI.IsMenuOpen()) {                                                       keybinds.push("Menu is Open") };
if (UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Auto direction")) {            keybinds.push("Freestand") };
if (UI.IsHotkeyActive("Rage", "Exploits", "Double tap")) {                   keybinds.push("Double tap") };
if (UI.IsHotkeyActive("Rage", "Exploits", "Hide shots")) {                   keybinds.push("Hide shots") };
if (UI.IsHotkeyActive("Anti-Aim", "Extra", "Fake duck")) {                   keybinds.push("Duck peek assist") };
if (UI.IsHotkeyActive("Rage", "General", "General", "Force body aim")) {     keybinds.push("Body aim") };
if (UI.IsHotkeyActive("Rage", "General", "General", "Force safe point")) {   keybinds.push("Safe point") };
if (UI.IsHotkeyActive("Script items", "min damage")) {                      keybinds.push("Minimum damage") };

const x = UI.GetValue("Script items", "binds x"),
y = UI.GetValue("Script items", "binds y");
const font = Render.AddFont("Calibri", 10, 100);
const color = UI.GetColor("Script items", "color");

Render.FilledRect(x, y, 150, 18, [0, 0, 0, color[3]]);
Render.StringCustom(x + 75, y + 1, 1, "keybinds", [255, 255, 255, 255], font);
for (i = 0; i < keybinds.length; i++){
    Render.StringCustom(x + 1, y + 18 + 15 * i, 0, keybinds[i], [255, 255, 255, 255], font);
    Render.StringCustom(x + 128, y + 18 + 15 * i, 0, "[on]", [255, 255, 255, 255], font);
}

Render.GradientRect( x, y - 2, 75, 2, 2, [55, 177, 218/*55, 177, 218*/, 255], [203, 70, 205/*203, 70, 205*/, 255]);
Render.GradientRect( x + 75, y - 2, 75, 2, 2, [203, 70, 205/*203, 70, 205*/, 255], [204, 227, 53/*204, 227, 53*/, 255]);


if(UI.IsMenuOpen() && Input.IsKeyPressed(0x1)){
    const mouse_pos = Global.GetCursorPosition();
    if (in_bounds(mouse_pos, x, y, x + 150, y + 40)) {
        if(!stored){
            x_offs = mouse_pos[0] - x;
            y_offs = mouse_pos[1] - y;
            stored = true;
        }
        UI.SetValue("Script items", "binds x", mouse_pos[0] - x_offs);
        UI.SetValue("Script items", "binds y", mouse_pos[1] - y_offs);
    }
} else if(stored) stored = false;
}

const draw = function(){
    if(get_dropdown_value(UI.GetValue("indicators"), 0))
    watermark();

    if(get_dropdown_value(UI.GetValue("indicators"), 1))
    keybinds();

}

Cheat.RegisterCallback("Draw", "draw");
ss -
1615733180381.png
 
али рождение киберспортсмена ( стандоф 2 )
Эксперт
Статус
Оффлайн
Регистрация
21 Окт 2020
Сообщения
1,480
Реакции[?]
564
Поинты[?]
53K
Да давай уже весь эйсид теч
 
Пользователь
Статус
Оффлайн
Регистрация
27 Мар 2019
Сообщения
437
Реакции[?]
102
Поинты[?]
0
не думай дальше такие темы создавать, это же просто????
 
Пользователь
Статус
Оффлайн
Регистрация
24 Апр 2018
Сообщения
445
Реакции[?]
85
Поинты[?]
2K
Код:
UI.AddMultiDropdown("indicators", ["watermark", "keybinds"]);
UI.AddColorPicker("color");

const screen_size = Global.GetScreenSize();
var stored = false;
var x_offs = 0;
var y_offs = 0;

UI.AddSliderInt("binds x", 0, screen_size[0]);
UI.AddSliderInt("binds y", 0, screen_size[1]);
UI.SetEnabled("Script items", "binds x", false);
UI.SetEnabled("Script items", "binds y", false);

const get_dropdown_value = function(value, index){
    const mask = 1 << index;
    return value & mask ? true : false;
}

const in_bounds = function(vec, x, y, x2, y2) {
    return (vec[0] > x) && (vec[1] > y) && (vec[0] < x2) && (vec[1] < y2)
}

const watermark = function() {
    const user = Cheat.GetUsername();
    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);
    const font = Render.AddFont("Calibri", 10, 100);
    const color = UI.GetColor("Script items", "color");
    const text = "acid.tech [beta] | "+ user +" | ";
    if (World.GetServerString() != ""){text += ""+ ping +" ms | " + Globals.Tickrate() + " tick | "; }
    text += time;
    const w = Render.TextSizeCustom(text, font)[0] + 10;
    const x = screen_size[0];
    x = x - w - 10;

    Render.FilledRect(x, 12, w, 18, [0, 0, 0, color[3]]);
    Render.StringCustom(x + 5, 13, 0, text, [255, 255, 255, 255], font);

    Render.GradientRect(x    , 10, w/2, 2, 2, [55, 177, 218/*55, 177, 218*/, 255], [203, 70, 205/*203, 70, 205*/, 255]);
    Render.GradientRect(x+ 98, 10, w/2, 2, 2, [203, 70, 205/*203, 70, 205*/, 255], [204, 227, 53/*204, 227, 53*/, 255]);
    if (World.GetServerString()){
        Render.GradientRect(x    , 10, w/2, 2, 2, [55, 177, 218/*55, 177, 218*/, 255], [203, 70, 205/*203, 70, 205*/, 255]);
        Render.GradientRect(x+ 141, 10, w/2, 2, 2, [203, 70, 205/*203, 70, 205*/, 255], [204, 227, 53/*204, 227, 53*/, 255]);}
}

const keybinds = function() {
var keybinds = [];
if (UI.IsMenuOpen()) {                                                       keybinds.push("Menu is Open") };
if (UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Auto direction")) {            keybinds.push("Freestand") };
if (UI.IsHotkeyActive("Rage", "Exploits", "Double tap")) {                   keybinds.push("Double tap") };
if (UI.IsHotkeyActive("Rage", "Exploits", "Hide shots")) {                   keybinds.push("Hide shots") };
if (UI.IsHotkeyActive("Anti-Aim", "Extra", "Fake duck")) {                   keybinds.push("Duck peek assist") };
if (UI.IsHotkeyActive("Rage", "General", "General", "Force body aim")) {     keybinds.push("Body aim") };
if (UI.IsHotkeyActive("Rage", "General", "General", "Force safe point")) {   keybinds.push("Safe point") };
if (UI.IsHotkeyActive("Script items", "min damage")) {                      keybinds.push("Minimum damage") };

const x = UI.GetValue("Script items", "binds x"),
y = UI.GetValue("Script items", "binds y");
const font = Render.AddFont("Calibri", 10, 100);
const color = UI.GetColor("Script items", "color");

Render.FilledRect(x, y, 150, 18, [0, 0, 0, color[3]]);
Render.StringCustom(x + 75, y + 1, 1, "keybinds", [255, 255, 255, 255], font);
for (i = 0; i < keybinds.length; i++){
    Render.StringCustom(x + 1, y + 18 + 15 * i, 0, keybinds[i], [255, 255, 255, 255], font);
    Render.StringCustom(x + 128, y + 18 + 15 * i, 0, "[on]", [255, 255, 255, 255], font);
}

Render.GradientRect( x, y - 2, 75, 2, 2, [55, 177, 218/*55, 177, 218*/, 255], [203, 70, 205/*203, 70, 205*/, 255]);
Render.GradientRect( x + 75, y - 2, 75, 2, 2, [203, 70, 205/*203, 70, 205*/, 255], [204, 227, 53/*204, 227, 53*/, 255]);


if(UI.IsMenuOpen() && Input.IsKeyPressed(0x1)){
    const mouse_pos = Global.GetCursorPosition();
    if (in_bounds(mouse_pos, x, y, x + 150, y + 40)) {
        if(!stored){
            x_offs = mouse_pos[0] - x;
            y_offs = mouse_pos[1] - y;
            stored = true;
        }
        UI.SetValue("Script items", "binds x", mouse_pos[0] - x_offs);
        UI.SetValue("Script items", "binds y", mouse_pos[1] - y_offs);
    }
} else if(stored) stored = false;
}

const draw = function(){
    if(get_dropdown_value(UI.GetValue("indicators"), 0))
    watermark();

    if(get_dropdown_value(UI.GetValue("indicators"), 1))
    keybinds();

}

Cheat.RegisterCallback("Draw", "draw");
ss -
1615733418449.png
 
Забаненный
Статус
Оффлайн
Регистрация
14 Мар 2021
Сообщения
10
Реакции[?]
0
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
уже сливали такие ватермарк и кейбинды челик просто в блокноте изменил назв на асид теч
 
Забаненный
Статус
Оффлайн
Регистрация
17 Янв 2021
Сообщения
183
Реакции[?]
94
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
хоть-бы кредит указал фу. v4cum откуси ему нос
Укусил
Пофиксил полоску (Теперь сама ставит размер нужный)

JavaScript:
UI.AddMultiDropdown("indicators", ["watermark", "keybinds"]);

UI.AddColorPicker("color");



const screen_size = Global.GetScreenSize();

var stored = false;

var x_offs = 0;

var y_offs = 0;



UI.AddSliderInt("binds x", 0, screen_size[0]);

UI.AddSliderInt("binds y", 0, screen_size[1]);

UI.SetEnabled("Script items", "binds x", false);

UI.SetEnabled("Script items", "binds y", false);



const get_dropdown_value = function(value, index) {

    const mask = 1 << index;

    return value & mask ? true : false;

}



const in_bounds = function(vec, x, y, x2, y2) {

    return (vec[0] > x) && (vec[1] > y) && (vec[0] < x2) && (vec[1] < y2)

}



const watermark = function() {

    const user = Cheat.GetUsername();

    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);

    const font = Render.AddFont("Calibri", 10, 100);

    const color = UI.GetColor("Script items", "color");

    const text = "bomjid.tech [beta] | " + user + " | ";

    if (World.GetServerString() != "") {

        text += "" + ping + " ms | " + Globals.Tickrate() + " tick | ";

    }

    text += time;

    const w = Render.TextSizeCustom(text, font)[0] + 10;

    const x = screen_size[0];

    x = x - w - 10;



    Render.FilledRect(x, 12, w, 18, [0, 0, 0, color[3]]);

    Render.StringCustom(x + 5, 13, 0, text, [255, 255, 255, 255], font);



    Render.GradientRect(x, 10, w / 2, 2, 2, [55, 177, 218 /*55, 177, 218*/ , 255], [203, 70, 205 /*203, 70, 205*/ , 255]);

    Render.GradientRect(x + w / 2, 10, w / 2, 2, 2, [203, 70, 205 /*203, 70, 205*/ , 255], [204, 227, 53 /*204, 227, 53*/ , 255]);



}



const keybinds = function() {

    var keybinds = [];

    if (UI.IsMenuOpen()) {

        keybinds.push("Menu is Open")

    };

    if (UI.GetValue("Anti-Aim", "Rage Anti-Aim", "Auto direction")) {

        keybinds.push("Freestand")

    };

    if (UI.IsHotkeyActive("Rage", "Exploits", "Double tap")) {

        keybinds.push("Double tap")

    };

    if (UI.IsHotkeyActive("Rage", "Exploits", "Hide shots")) {

        keybinds.push("Hide shots")

    };

    if (UI.IsHotkeyActive("Anti-Aim", "Extra", "Fake duck")) {

        keybinds.push("Duck peek assist")

    };

    if (UI.IsHotkeyActive("Rage", "General", "General", "Force body aim")) {

        keybinds.push("Body aim")

    };

    if (UI.IsHotkeyActive("Rage", "General", "General", "Force safe point")) {

        keybinds.push("Safe point")

    };

    if (UI.IsHotkeyActive("Script items", "min damage")) {

        keybinds.push("Minimum damage")

    };



    const x = UI.GetValue("Script items", "binds x"),

        y = UI.GetValue("Script items", "binds y");

    const font = Render.AddFont("Calibri", 10, 100);

    const color = UI.GetColor("Script items", "color");



    Render.FilledRect(x, y, 150, 18, [0, 0, 0, color[3]]);

    Render.StringCustom(x + 75, y + 1, 1, "keybinds", [255, 255, 255, 255], font);

    for (i = 0; i < keybinds.length; i++) {

        Render.StringCustom(x + 1, y + 18 + 15 * i, 0, keybinds[i], [255, 255, 255, 255], font);

        Render.StringCustom(x + 128, y + 18 + 15 * i, 0, "[on]", [255, 255, 255, 255], font);

    }



    Render.GradientRect(x, y - 2, 75, 2, 2, [55, 177, 218 /*55, 177, 218*/ , 255], [203, 70, 205 /*203, 70, 205*/ , 255]);

    Render.GradientRect(x + 75, y - 2, 75, 2, 2, [203, 70, 205 /*203, 70, 205*/ , 255], [204, 227, 53 /*204, 227, 53*/ , 255]);





    if (UI.IsMenuOpen() && Input.IsKeyPressed(0x1)) {

        const mouse_pos = Global.GetCursorPosition();

        if (in_bounds(mouse_pos, x, y, x + 150, y + 40)) {

            if (!stored) {

                x_offs = mouse_pos[0] - x;

                y_offs = mouse_pos[1] - y;

                stored = true;

            }

            UI.SetValue("Script items", "binds x", mouse_pos[0] - x_offs);

            UI.SetValue("Script items", "binds y", mouse_pos[1] - y_offs);

        }

    } else if (stored) stored = false;

}



const draw = function() {

    if (get_dropdown_value(UI.GetValue("indicators"), 0))

        watermark();



    if (get_dropdown_value(UI.GetValue("indicators"), 1))

        keybinds();



}



Cheat.RegisterCallback("Draw", "draw");
 
Последнее редактирование:
Забаненный
Статус
Оффлайн
Регистрация
28 Фев 2021
Сообщения
35
Реакции[?]
10
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Так это же js принца1337хакерпро
 
̷c̷f̷g̷ ̷s̷e̷l̷l̷e̷r̷
Забаненный
Статус
Оффлайн
Регистрация
10 Окт 2020
Сообщения
154
Реакции[?]
19
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Те кто не знает можно просто взять вишкорд для в3 и поменять там вишкорд на асидтеч И ВАУ БуДЕТ АСИТЕЧ ДЛЯ В3 ВАААУ
 
Эксперт
Статус
Оффлайн
Регистрация
22 Мар 2020
Сообщения
2,187
Реакции[?]
484
Поинты[?]
3K
Те кто не знает можно просто взять вишкорд для в3 и поменять там вишкорд на асидтеч И ВАУ БуДЕТ АСИТЕЧ ДЛЯ В3 ВАААУ
ВАУУУ , НУ КА ДАВАЙ МНЕ ФУЛЛ СУРС КОД , ТЫ ЧЁ
 
Сверху Снизу