hum... Olha: 1: em Spells.xml. acha a tag da sua spell, exemplo:
<instant name="Invisibility" words="utana vid" lvl="35" mana="440" aggressive="0" selftarget="1" exhaustion="1000" needlearn="0" event="script" value="support/invisible.lua">
procura por:
exhaustion="1000"
muda o 1000, pra o tempo de exaust desejado..
2: no arquivo.lua da spell, depois de function onCastSpell(cid, var) da um enter e adiciona:
local waittime = 10 --tempo em segundoslocal storage = 2521 --storage do exuast, em cada magia uma storage diferente.if exhaustion.check(cid, storage) then doPlayerSendTextMessage(cid, 27, "Voce tem que espera " .. exhaustion.get(cid, storage) .. " segundos.")return false endexhaustion.set(cid, storage, waittime)