local sp = require "lib.samp.events" -- подгрузка библиотеки
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0)
end
end
function sp.onServerMessage(color, text)
if text:find("До следующего уровня вам осталось") then -- детектор фразы "до следующего уровня"
sampSendChat('/ok') -- отправка в чат '/ok'
end
end