I need to use continue in a loop in LUA
I tried this:
dofile(getDataDir() .. "actions/scripts/quests.lua")
function onSay(cid, words, param, channel)
local mins = 60
local hours = 60 * 60
local days = 24 * 60 * 60
print("----------")
print(mins, hours, days)
local...