Ir para conteúdo

Super Pedido


matttt

Posts Recomendados

Galera não sei se alguem eh capanz de fazer isso mais vou tentar xD eu queria 1 script que quando o player relogasse removesse a transformação tipo so ele relogar remove o outfit e a vocaçao da transformaçao voltasse oq era antes sem bugar o outfit se vcs precisarem ver o script eh esse aqui ó :

 

function onSay(cid, words, param)

 

local voce = 206

local lvl = 250

local voc = 207

local outfit = {lookType=237,lookHead=20,lookAddons=0,lookLegs=40,lookBody=30,lookFeet=50} -- Zmiana outfitu w id?

local outfitTime = 10999999

local napis = "Haa!!!"

local effekt = 13

 

----------------------kod-----------------------------

if getPlayerVocation(cid) == voce and getPlayerLevel(cid) >= lvl then

doPlayerSetVocation(cid,voc)

doSetCreatureOutfit(cid, outfit, outfitTime)

doPlayerSay(cid,napis,16)

local pos = getPlayerPosition(cid)

doSendMagicEffect(pos,effekt)

else

doPlayerSendCancel(cid,"You cannot transform")

end

return 1

end

 

Comentem .

Link para o comentário
Compartilhar em outros sites

function onSay(cid, words, param)
local voc1 = 206
local voc2 = 207
local lvl = 250
local outfit = {lookType=237,lookHead=20,lookAddons=0,lookLegs=40,lookBody=30,lookFeet=50} -- Zmiana outfitu w id?
if getPlayerVocation(cid) == voc1 and getPlayerLevel(cid) >= lvl then
doPlayerSetVocation(cid, voc2)
doCreatureChangeOutfit(cid, outfit)
doPlayerSay(cid, "Haa!!!", 16)
doSendMagicEffect(getPlayerPosition(cid), 13)
else
doPlayerSendCancel(cid,"You cannot transform.")
end
return 1
end

Tenta esse ai cara...

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

×
×
  • Criar Novo...