dsc.gg/solar-tech
Продавец
-
Автор темы
- #1
Всем привет!
Это очень приватная LUA, прошу не пастить!
Stay solar.tech
Это очень приватная 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)