• 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!

problem with gamemaster doll - real map 8.60

samneill

New Member
Joined
Jul 19, 2009
Messages
26
Reaction score
0
Location
Brasil
hello friends! i need your help!

i want to insert in my ot 8.60, real map the item "gamemaster doll". i tried with rme, but the server stops to work =(

someone can teach me how to insert this nice item?

thank you very much!!
 
You have to get a script for that item :)

EDIT:
XML:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="addon-doll" version="1.0" author="slawkens" contact="[email protected]" enabled="yes">
	<talkaction words="!addon" event="script"><![CDATA[
		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"]={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}
		}

		function onSay(cid, words, param, channel)
 			param = param:lower()
			if(getPlayerItemCount(cid, 8982) > 0) then
				if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then
					doPlayerRemoveItem(cid, 8982, 1)
					doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Full Addon Set sucesfully added!")
						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, "Command requires GOOD param!")
				end
			else
				doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You dont have Addon Doll!")
			end

			return true
		end
	]]></talkaction>

	<item id="8982" article="an" name="addon doll" override="yes">
		<attribute key="weight" value="1000" />
	</item>
</mod>
 
Last edited:
Hello Crolly!

thank you very much for the extreme fast answer! but i still have the problem...

to tell you the truth, i really don´t understand this scrip =(

(were i insert the iten, and were i put it)

can u help me more?

thx!
 
Hello Crolly!

thank you very much for the extreme fast answer! but i still have the problem...

to tell you the truth, i really don´t understand this scrip =(

(were i insert the iten, and were i put it)

can u help me more?

thx!

It's a mod, just put it in the mod folder and it should be up and running.
 
Back
Top