script_author("W.Parson")
script_name("bartimer")
local hook = require("samp.events")
function main()
repeat wait(0) until isSampAvailable()
while true do
wait(0)
end
end
function hook.onServerMessage(color, text)
lua_thread.create(function()
if text:find("отозвать приглашение") then
wait (31000)
sampAddChatMessage('Вы снова можете кидать ставки. Желаю побед!', 0x9e0b81)
end
end)
end