Ir para conteúdo
  • 0

Spell de copiar roupa do inimigo


Allangod

Pergunta

9 respostass a esta questão

Posts Recomendados

  • 0

testa ae..

 

function doCloneOut(cid, outfit, time)

if not isCreature(cid) then return true end

doSetCreatureOutfit(cid, outfit, time)

end

 

function onCastSpell(cid, var)

local taget = getCreatureTarget(cid)

if not isCreature(target) then

return doPlayerSendTextMessage(cid, 27, "You need a target to use this!")

end

local time = 10000 --10s

doCloneOut(cid, getCreatureOutfit(target), time)

return true

end

 

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

  • 0

Slicer, nem precisava criar a função doClone() .__.

 

E tipo, não declara dentro do bloco principal variáveis que vão permanecer constantes....

 


local time = 10 --10 segundos

function onCastSpell(cid, var)
  local target = getCreatureTarget(cid)
  if not isCreature(target) then
  return doPlayerSendTextMessage(cid, 27, "You need a target to use this!")
  end

  return doSetCreatureOutfit(cid, getCreatureOutfit(target), time * 1000)
end

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

×
×
  • Criar Novo...