- 140
- 8
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Lua:
function checkFlood(nick, id)
local lastMessage = {}
if lastMessage[nick] then
local curTime = os.time()
local diff = curTime - lastMessage[nick].time
if diff <= 5 then
flood_warning()
end
end
lastMessage[nick] = {
id = id,
time = os.time()
}
end