Ir para conteúdo

Ajuda Nessa Script


uriel70

Posts Recomendados

Quero que essa script fassa com que o player possa mudar de cor seu outfit tbm, e mudar addons.

Ajuda ae Plix

 

 

 

local female = {lookType = 269, lookHead = 79, lookBody = 91, lookLegs = 91, lookFeet = 91, lookTypeEx = 0, lookAddons = 3}

local male = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3}

 

function onStepIn(cid, item, pos)

if isPlayer(cid) == TRUE then

if getPlayerSex(cid) == 0 then

doCreatureChangeOutfit(cid, female)

else

doCreatureChangeOutfit(cid, male)

end

doSendMagicEffect(getThingPos(cid), 29) -- EFEITO QUE DARA

doSendAnimatedText(getPlayerPosition(cid),"Fight!", math.random(01,255)) -- FALA QUE O PLAYER IRA FALAR

end

return TRUE

end

Link para o comentário
Compartilhar em outros sites

Primeiramente, tente colocar o código entre as tags [.code] e [./code]. Segundo, qual o problema com o script?

 

local female = {lookType = 269, lookHead = 79, lookBody = 91, lookLegs = 91, lookFeet = 91, lookTypeEx = 0, lookAddons = 3}
local male = {lookType = 268, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = 3}

function onStepIn(cid, item, pos)
  if isPlayer(cid) then
     doCreatureChangeOutfit(cid, getPlayerSex(cid) == 0 and female or male)
     doSendMagicEffect(pos, 29)
     doSendAnimatedText(pos,"Fight!", math.random(01,255))
  end
return TRUE
end

 

flw

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

vei n sei se entendi direito...

vc quer mudar o outfit por um tempo

ou quer adicionar um outfit no player?

 

pq se vc quer mudar por um tempo n vai poder trocar a cor do geito normal

so atraves de script

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...