- 40
- 3
- Версия MoonLoader
- Другое
Lua:
local samp = require 'samp.events'
local hookDialog = false
local act = false
local playerArr = {};
function samp.onServerMessage(color, text)
lua_thread.create(function()
wait(0)
for k, v in ipairs(playerArr) do
if playerNick == v then
return
end
end
if text:find('%[Жалоба%] от (.+)%[(%d+)%]:{FFFFFF} яркий закат%. Уже (%d+) жалоба!!!') then
local nick, id, reportCount = text:match('%[Жалоба%] от (.+)%[(%d+)%]:{FFFFFF} яркий закат%. Уже (%d+) жалоба!!!')
nick = playerNick
sampSendChat("/pm " ..id.." Держи золотишка и прокачай как надо.")
table.insert(playerArr, playerNick)
end
end)
end