- 34
- 3
- Версия MoonLoader
- .026-beta
Подскажите почему не работает скрипт. Когда в чате пишут псж/psj/увал/увал псж/увольте, то должно вылазить оповещение о принятии формы об увольнении игрока. Если принимается - увал,если нет, то форма отменяется. Но почему то он даже не видит собщений в чате
Код:
local ev=require "lib.samp.events"
require 'moonloader'
local msguval = {
'псж',
'psj',
'увал',
'увал псж',
'увольте',
}
function sampev.onServerMessage(color, text)
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
if text:find('%[F%] .+ (.+)%[(.+)%]: (.+)') then
local nick, id, textmsg = text:match('%[F%] .+ (.+)%[(.+)%]: (.+)')
for k, v in ipairs(msguval) do
if textmsg:lower():find(v) then
msg(nick..' Хочет уйти по собственному желанию. Нажмите + для одобрения или - для отказа.')
lasttime = os.time()
lasttimes = 0
time_out = 5
lua_thread.create(function()
while lasttimes < time_out do
lasttimes = os.time() - lasttime
wait(0)
printStyledString("PSJ "..nick..' ' .. time_out - lasttimes .. " WAIT", 1000, 4)
if isKeyJustPressed(0xBB) then
printStyledString("Accept Form", 1000, 4)
sampSendChat('/uninvite '..id..' ПСЖ')
msg(nick..' Был уволен ПСЖ.', -2)
break
end
if isKeyJustPressed(0xBD) then
printStyledString("Skipped Form", 1000, 4)
break
end
end
end)
end
end
end
end