Ir para conteúdo
  • 0

Pedido De addon doll


isac313

Pergunta

3 respostass a esta questão

Posts Recomendados

  • 0

Talkactions.xml:

		<talkaction words="!addon" event="script" value="addondoll"/>

 

data/actions/scripts/addondoll.lua:

 

function onSay(cid, words, param)
local femaleOutfits = { ["all"]={136}, ["all"]={137}, ["all"]={138}, ["all"]={139}, ["all"]={140}, ["all"]={141}, ["all"]={142}, ["all"]={147}, ["all"]={148}, ["all"]={149}, ["all"]={150}, ["all"]={155}, ["all"]={156}, ["all"]={157}, ["all"]={158}, ["all"]={252}, ["all"]={269}, ["all"]={270}, ["all"]={279}, ["all"]={288}, ["all"]={324}, ["all"]={335} }
local maleOutfits = { ["all"]={128}, ["all"]={129}, ["all"]={130}, ["all"]={131}, ["all"]={132},["all"]={133}, ["all"]={134}, ["all"]={143}, ["all"]={144}, ["all"]={145}, ["all"]={146}, ["all"]={151}, ["all"]={152}, ["all"]={153}, ["all"]={154}, ["all"]={251}, ["all"]={268}, ["all"]={273}, ["all"]={278}, ["all"]={289}, ["all"]={325}, ["all"]={336} }
local msg = {"Digite o nome correto!", "Voce não possui AddonDoll!", "Bad param!", "Você recebeu seus addons!"}
local param = string.lower(param)
if (not isPremium(cid)) then
doPlayerSendCancel(cid, "Você nao tem premium account.")
return TRUE
end
if(getPlayerItemCount(cid, 9693) > 0) then
if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then
doPlayerRemoveItem(cid, 9693, 1)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)
if(getPlayerSex(cid) == 0)then
doPlayerAddOutfit(cid, femaleOutfits[param][1], 3)
else
doPlayerAddOutfit(cid, maleOutfits[param][1], 3)
end
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])
end
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])
end
end

 

É só dizer: !addon all

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

  • 0

Cara No Casso Eu queria Fazer Assin 2 Script De addon doll 1 tipo de addon doll fizese so o addon do assassin do warrior do druid e do mage da outro tipo de addon doll fizese o resto tem como//?

 

EDITE@@

 

Esse script que vc me passo so ta fazendo so 1 addon o "warmaster" e eu quero que ele fasa todos

 

obs: 1 de cada vez nao todos de 1 vez so

 

:D ajuda?

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

  • 0
Crie Um Arquivo Em Data/Talkactions/Script Com O Nome De addondoll.lua E Cole Isto Dentro

 

 

 

function onSay(cid, words, param, channel)

local femaleOutfits = { ["citizen"]={136}, ["hunter"]={137}, ["mage"]={138}, ["knight"]={139}, ["nobleman"]={140}, ["summoner"]={141}, ["warrior"]={142}, ["barbarian"]={147}, ["druid"]={148}, ["wizard"]={149}, ["oriental"]={150}, ["pirate"]={155}, ["assassin"]={156}, ["beggar"]={157}, ["shaman"]={158}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324}, ["warmaster"]={335}, ["wayfarer"]={366}, }

local maleOutfits = { ["citizen"]={128}, ["hunter"]={129}, ["mage"]={130}, ["knight"]={131}, ["nobleman"]={132},["summoner"]={133}, ["warrior"]={134}, ["barbarian"]={143}, ["druid"]={144}, ["wizard"]={145}, ["oriental"]={146}, ["pirate"]={151}, ["assassin"]={152}, ["beggar"]={153}, ["shaman"]={154}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325}, ["warmaster"]={336}, ["wayfarer"]={367}, }

local msg = {"Digite O Nome Do Addon Correto!", "Você Precisa De Um Addon Doll Para Fazer O Addon!", "Bad param!", "Parabéns,Você Fez Um Addon!"}

local t = string.explode(param, ",")

if (not isPremium(cid)) then

doPlayerSendCancel(cid, "Você Precisa De Premium Account Para Fazer O Addon.")

return true

end

if(getPlayerItemCount(cid, 11390) > 0) then

if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then

doPlayerRemoveItem(cid, 11390, 1)

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])

doSendMagicEffect(getCreaturePosition(cid), 28)

if(getPlayerSex(cid) == 0)then

doPlayerAddOutfit(cid, femaleOutfits[param][1], 3)

else

doPlayerAddOutfit(cid, maleOutfits[param][1], 3)

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])

end

end

 

 

Em Talkactions.xml coloque isso

 

<talkaction words="!addon" event="script" value="addondoll.lua"/>

 

Explicando o Script.

Vermelhas : São O ID Do item Que Você Ira Usar Para Ser O (ADDON DOLL) Que Ali Esta O Ferumbras Doll

Verde : A Quantidade De Addons Dolls Que Seram Retirados.

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

×
×
  • Criar Novo...