- 13
- 3
- Версия MoonLoader
- .025-beta
Должно работать: 1) я убиваю игрока 2) ему автоматом отправляется СМСочка.
Код:
-- СМСочка
if playerId ~= nil and active then
if not isPlayerDead(PLAYER_HANDLE) and not damage ~= nil then
hp = sampGetPlayerHealth(playerId)
new_hp = hp - damage
lua_thread.create(function()
wait(0)
if new_hp == 0 or new_hp < 0 then
sampSendChat("/sms "..playerid.." qq!")
elseif new_hp < load_settings.settings.cell_hp then
sampSendChat("/sms "..playerid.." qq")
end
end)
end
playerId = nil
end