- 175
- 6
- Версия MoonLoader
- .026-beta
Мне нужно, чтобы когда приходит сообщение "Принял предложение работать на вас!", то выходила сообщение "sampAddChatMessage("Игрок " .. sampGetPlayerNickname(id) .. "[" .. id .. "]" .. " был успешно принят.", color)", иначе "Игрок отказался.", но что-то не получается. Помогите пожалуйста.
lua:
local inviteMessage = nil
if wasKeyPressed(keys.VK_J) and not sampIsCursorActive() and not sampIsDialogActive() then
local _, char = getCharPlayerIsTargeting()
if _ then
local __, id = sampGetPlayerIdByCharHandle(char)
if __ then
sampSendChat("/jobinvite " .. id)
--if inviteMessage == true then
-- sampAddChatMessage("Игрок " .. sampGetPlayerNickname(id) .. "[" .. id .. "]" .. " был успешно принят.", color)
--else
-- sampAddChatMessage("Игрок отказался.", -1)
--end
end
end
end
function ev.onServerMessage(color, text)
--if inviteMessage then
-- text:find("Принял предложение работать на вас!")
--end
if text:find("Принял предложение работать на вас!") then
sampAddChatMessage("GOOOD", -1)
end
end