LUA скрипт [neverlose] gamesense hitlogs

dsc.gg/solar-tech
Продавец
Статус
Оффлайн
Регистрация
10 Мар 2022
Сообщения
140
Реакции[?]
53
Поинты[?]
15K
Всем привет!
Это очень приватная LUA, прошу не пастить!

Код:
local hitgroup_str = {
    [0] = 'generic',
    'head', 'chest', 'stomach',
    'left arm', 'right arm',
    'left leg', 'right leg',
    'neck', 'generic', 'gear'
}

local function gamesense_print(…)
    print_dev(…)
    print_raw('\a9FCA2B[gamesense] \aDEFAULT' .. …)
end

events.player_hurt:set(function(e)
    local me = entity.get_local_player()
    local attacker = entity.get(e.attacker, true)

    if me == attacker then
        local user = entity.get(e.userid, true)
        local hitgroup = hitgroup_str[e.hitgroup]

        gamesense_print(('Hit %s in the %s for %d damage (%d health remaining)'):format(
            user:get_name(), hitgroup,
            e.dmg_health, e.health
        ))
    end
end)
Stay solar.tech
 
Сверху Снизу