Ir para conteúdo
  • 0

( Tp Scroll) Aumentar O Tempo Para Reutilização


Bennyhappy

Pergunta

script 8.6

 

Eu preciso deste item,você pode usar apenas a cada 15 minutos,

 

 

function onUse(cid, item, frompos, item2, topos)

ppos = getPlayerPosition(cid)

temple = getPlayerMasterPos(cid)

if (getCreatureCondition(cid, CONDITION_INFIGHT) == FALSE) then

doTeleportThing(cid, temple, TRUE)

doSendMagicEffect(ppos,13)

doSendAnimatedText(frompos,'Teleport',251)

else

doPlayerSendCancel(cid,"Tienes Pz Noob Esperate.")

doSendMagicEffect(ppos,2)

end

return 1

end

Editado por beenii
Link para o comentário
Compartilhar em outros sites

4 respostass a esta questão

Posts Recomendados

  • 0

Fiz rapidao para vc

 

 

local tptemp = {

exhausted = 15000, -- Time you are exhausted in seconds.

storage = 5856, -- Storage used for "exhaust."

}

 

 

function onUse(cid, item, frompos, item2, topos)

if(getPlayerStorageValue(cid, tptemp.storage) > os.time() and getPlayerStorageValue(cid, tptemp.storage) < 100+os.time()) then

doPlayerSendCancel(cid, "Desculpe,Aguarde o tempo de espera")

return true

end

ppos = getPlayerPosition(cid)

temple = getPlayerMasterPos(cid)

if (getCreatureCondition(cid, CONDITION_INFIGHT) == FALSE) then

doTeleportThing(cid, temple, TRUE)

doSendMagicEffect(ppos,13)

doSendAnimatedText(frompos,'Teleport',251)

setPlayerStorageValue(cid, tptemp.storage, os.time() + tptemp.exhausted)

else

doPlayerSendCancel(cid,"Tienes Pz Noob Esperate.")

doSendMagicEffect(ppos,2)

end

return 1

end

 

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...