Ir para conteúdo
  • 0

[Ajuda] # Script De Transporte


Statusonline

Pergunta

8 respostass a esta questão

Posts Recomendados

  • 0
function onCastSpell(cid, var)
   target = getCreatureTarget(cid)
   if (target ~= 0) then
       Shar_Dim = {x=2458, y=2467, z=7}  -- posição que teletronsportara
       doTeleportThing(target, Shar_Dim)
   return true
   end
   return false
end

Link para o comentário
Compartilhar em outros sites

  • 0

Desse jeito ?

 

function onCastSpell(cid, var)
    target = getCreatureTarget(cid)
    if (target ~= 0) then
		    Shar_Dim = {x=2458, y=2467, z=7}  -- posição que teletronsportara
		    doTeleportThing(target, Shar_Dim)				 
		    doSendMagicEffect(getCreaturePosition(cid), 13) -- id do efeito.
    return true
    end
    return false
end

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

  • 0

assim !

 

 

 

 


function onCastSpell(cid, var)
	    target = getCreatureTarget(cid)
	    if (target ~= 0) then
					    Shar_Dim = {x=2458, y=2467, z=7}  -- posição que teletronsportara
					    doTeleportThing(target, Shar_Dim)  
					    doTeleportThing(cid, Shar_Dim)						  
					    doSendMagicEffect(getCreaturePosition(cid), 13) -- id do efeito.
	    return true
	    end
	    return false
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...