Hi guys, today i make a quest, before lunch worked perfectly, but when i gone, i enter to the game and not working, i make a ./qc and get error:
Code:
assertion failure : nested==0
login.quest:12:Abort (core dumped)
the quest are:
PHP Code:
quest infologin begin
state start begin
when login begin
local current_hour = tonumber(os.date("%H"))
local current_minute = tonumber(os.date("%M"))
if current_minute <= 9 then
chat("Time: "..current_hour..":0"..current_minute.." h")
elseif current_minute >9 then
chat("Time: "..current_hour..":"..current_minute.." h")
end
end
end
Someone knows why get the error?