local sampev = require 'lib.samp.events'
local arr = {
["Вопрос"] = "Ответ",
["Ещё вопрос"] = "Ещё ответ",
["Ещё один вопрос"] = "И ешё один ответ",
}
function sampev.onServerMessage(color, text)
for k, v in pairs(arr) do
if text:find(k) then
lua_thread.create(function() wait(10)
sampSendChat(v)
end)
end
end
end