LUA скрипт [FTC] Ideal yaw indicator

Пользователь
Статус
Оффлайн
Регистрация
30 Окт 2020
Сообщения
209
Реакции[?]
41
Поинты[?]
1K
credits: klient
1638629681184.png

Код:
--[[

    name: Ideal Yaw Indicators
    author: Klient#1690

]]

local Render, Config, Menu, Callbacks, EntityList, Console, EngineClient, Color = fatality.render, fatality.config, fatality.menu, fatality.callbacks, csgo.interface_handler:get_entity_list(), csgo.interface_handler:get_cvar(), csgo.interface_handler:get_engine_client(), {}

local font = Render:create_font("Tahoma", 12, 400, true)

local ms_classes = {
    indicator = function()
        local g_paint_handler = function()
            local freestand, doubletap, hideshots = Menu:get_reference("Rage", "Anti-Aim", "General", "Freestand"), Menu:get_reference("Rage", "Aimbot", "Aimbot", "Double tap"), Menu:get_reference("Rage", "Aimbot", "Aimbot", "Hide shot")

            local x, y = Render:screen_size().x / 2 + 10, Render:screen_size().y / 2 + 10
            local cn = 1

            Render:text(font, x, y * cn, "Jmekeria cu magnetu", csgo.color(255, 255, 255, 255)) cn = cn + 1

            Render:text(font, x, y + 10 * cn, "IDEAL YAW", csgo.color(220, 135, 49, 255)) cn = cn + 1
            Render:text(font, x, y + 10 * cn, freestand:get_bool() and "DYNAMIC" or "DEFAULT", freestand:get_bool() and csgo.color(209, 159, 230, 255) or csgo.color(220, 0, 29, 255)) cn = cn + 1
            if doubletap:get_bool() then Render:text(font, x, y + 10 * cn, "DT", csgo.color(25, 255, 25, 255)) cn = cn + 1 end
            if hideshots:get_bool() then Render:text(font, x, y + 10 * cn, "AA", csgo.color(200, 185, 255, 255)) cn = cn + 1 end
        end
        Callbacks:add("paint", g_paint_handler)
    end
}
ms_classes.indicator()
 
Сверху Снизу