Ir para conteúdo

Botar Tempo Nesta Action!


Oapocalipse

Posts Recomendados

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

if getPlayerAccess(cid) == 0 then


player1pos = {x=topos.x, y=topos.y, z=topos.z, stackpos=253}
player1 = getThingfromPos(player1pos)



if player1.itemid > 0 then
temple = {x=559, y=18, z=7}
doSendMagicEffect(topos,12)
doTeleportThing(player1.uid,temple)
doSendMagicEffect(temple,12)
doPlayerSendTextMessage(player1.uid,22,"Você fumou um baseado.")
if item.type > 1 then
doChangeTypeItem(item.uid,item.type-1)
else
doRemoveItem(item.uid,1)
end
return 0
else
doSendMagicEffect(frompos,2)
return 0
end
else
doPlayerSendTextMessage(cid,22,"FDP DE GM, TENTANDO FUMAR nÉ???")
return 0
end
end

 

Este e o script, como pode ver ele teleporta o player pra algm lugar, quero por pra depois de x tempo reteleportar para outro

Link para o comentário
Compartilhar em outros sites

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

if getPlayerAccess(cid) == 0 then


player1pos = {x=topos.x, y=topos.y, z=topos.z, stackpos=253}
player1 = getThingfromPos(player1pos)



if player1.itemid > 0 then
temple = {x=559, y=18, z=7}
outrapos = {x=000, y=0, z=0}
segundos = 30

doSendMagicEffect(topos,12)
doTeleportThing(player1.uid,temple)
addEvent(doTeleportThing, segundos*1000, player1.uid, outrapos)
doSendMagicEffect(temple,12)
doPlayerSendTextMessage(player1.uid,22,"Você fumou um baseado.")
if item.type > 1 then
doChangeTypeItem(item.uid,item.type-1)
else
doRemoveItem(item.uid,1)
end
return 0
else
doSendMagicEffect(frompos,2)
return 0
end
else
doPlayerSendTextMessage(cid,22,"FDP DE GM, TENTANDO FUMAR nÉ???")
return 0
end
end

 

Configure os segundos e a outrapos no script

 

Os segundos e o tempo que vai demorar pra mandar pra outrapos

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...