Área incorreta, tópico movido. Mais cuidado da próxima vez.
@código
Veja se isto lhe satisfaz:
--[[
Tag:
<talkaction words="!debug;/debug" script="nome do arquivo.lua"/>
]]--
local STORAGE_EXAUSTED = 91812
local exausted = 30 --Minutos.
function onSay(cid, words)
local storage = getPlayerStorageValue(cid, STORAGE_EXAUSTED)
if storage > os.time() then
return doPlayerSendCancel(cid, string.format("Aguarde %d segundo%s para usar este comando novamente.", storage - os.time(), storage - os.time() > 1 and "s" or ""))
else
doPlayerSendTextMessage(cid, 27, string.format("[DEBUG] Você foi teleportado para sua cidade inicial. Lembre-se: você só poderá usar este comando novamente daqui à %d segundos.", exausted))
setPlayerStorageValue(cid, STORAGE_EXAUSTED, os.time() + exausted*60)
doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))
end
return true
end