• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Help Addon Doll

felipemko

New Member
Joined
Mar 2, 2010
Messages
173
Reaction score
3
Can you help me not to get to mage addon (male) and summoner addon (female) in doll addon?



Addon Doll script:

function onSay(cid, words, param)local femaleOutfits ={["citizen"]={136},["hunter"]={137},["mage"]={138},["knight"]={139},["nobleman"]={140},["summoner"]={134},["warrior"]={142},["barbarian"]={147},["druid"]={148},["wizard"]={149},["oriental"]={150},["pirate"]={155},["assassin"]={156},["beggar"]={157},["shaman"]={158},["norseman"]={252},["nightmare"]={269},["jester"]={270},["brotherhood"]={279},["demonhunter"]={288},["yalaharian"]={324},["warmaster"]={336},["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"]={335},["wayfarer"]={367}}local msg ={"Digite o nome correto do addon","Você não possui um Addon Doll!","Bad param!","Você recebeu seu addon."}local param =string.lower(param)if(not isPremium(cid))then
doPlayerSendCancel(cid,"Você não tem premium account.")returntrueendif(getPlayerItemCount(cid,11144)>0)thenif(param ~=""and maleOutfits[param]and femaleOutfits[param])then
doPlayerRemoveItem(cid,11144,1)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)if(getPlayerSex(cid)==1)then
doPlayerAddOutfit(cid, maleOutfits[param][1],3)else
doPlayerAddOutfit(cid, femaleOutfits[param][1],3)endelse
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])endelse
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])endend
 
Only remove the one from the male
Code:
["mage"]={130},

So not this one if the mage addon should still be there for female
Code:
["mage"]={138},
 
Back
Top Bottom