Ir para conteúdo
  • 0

Todos Addon em Um Comando


otfun

Pergunta

fala galera bom dia, gostaria de saber como modificar o script pra ele dar todos addons de uma vez só e se possível ele gastar dinheiro e não addon doll obrigado

 

function onSay(cid, words, param)
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} }
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} }
local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu 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

Link para o comentário
Compartilhar em outros sites

1 resposta a esta questão

Posts Recomendados

  • 0
function onSay(cid, words, param)

-- Valor para ter all addons
local _Price = XXX 

-- Outfits     
local _Outfits = {
	-- ["AddonName"] = {female, male},
	["citizen"] = {136, 128}, 
	["hunter"] = {137, 129}, 
	["mage"] = {138, 130}, 
	["knight"] = {139,131}, 
	["nobleman"] = {140, 132}, 
	["summoner"] = {141, 133}, 
	["warrior"] = {142, 134}, 
	["barbarian"] = {147, 143}, 
	["druid"] = {148, 144}, 
	["wizard"] = {149, 145}, 
	["oriental"] = {150, 146}, 
	["pirate"]= {155, 151}, 
	["assassin"] = {156, 152}, 
	["beggar"]= {157, 153}, 
	["shaman"]= {158, 154}, 
	["norsewoman"] = {252, 251}, 
	["nightmare"] = {269, 268}, 
	["jester"] = {270, 273}, 
	["brotherhood"] = {279, 278}, 
	["demonhunter"] = {288, 289}, 
	["yalaharian"] = {324, 325}, 
	["warmaster"] = {335, 336},
}

	-- Verifica se o player é premium 
	if not isPremium(cid) then
		doPlayerSendCancel(cid, "Você nao tem premium account.")
		return true
	end

	-- Verifica se o player tem dinheiro 
	if doPlayerRemoveMoney(cid, _Price) then
		for _, addons in pairs(_Outfits) do
			-- Adicionando os addons com condição ternária
			doPlayerAddOutfit(cid, getPlayerSex(cid) == 0 and addons[1] or addons[2], 3)
		end
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você recebeu seu addons!")
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)	
	else
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você não possui dinheiro suficiente!")
	end

	return true
end
<talkaction words="!alladdons" event="script" value="ARQUIVO.lua"/>

^^

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...