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

Is it possible...?

Evan

A splendid one to behold
Senator
Premium User
Joined
May 6, 2009
Messages
7,018
Solutions
1
Reaction score
1,040
Location
United States
Is it possible to create a monster with a mount?
For example, a bandit on a horse mount.
 
Like this

I had to use a character outfit with the same colors as a bandit and outfit so I could use the mounted sprite (The character sitting on the mount)

Picture:
148lu81.png


Bandit Mounted.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Bandit mounted" nameDescription="a bandit" race="blood" experience="65" speed="180" manacost="450">
	<health now="245" max="245"/>
	<look type="129" head="58" body="40" legs="45" feet="114" corpse="6080" mount="377" />
	<targetchange interval="5000" chance="8"/>
	<strategy attack="100" defense="0"/>
	<flags>
		<flag summonable="1"/>
		<flag attackable="1"/>
		<flag hostile="1"/>
		<flag illusionable="1"/>
		<flag convinceable="1"/>
		<flag pushable="1"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="0"/>
		<flag targetdistance="1"/>
		<flag staticattack="90"/>
		<flag runonhealth="25"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" skill="20" attack="30"/>
	</attacks>
	<defenses armor="11" defense="15"/>
	<elements>
		<element physicalPercent="-12"/>
		<element deathPercent="-5"/>
	</elements>
	<voices interval="5000" chance="10">
		<voice sentence="Your money or your life!"/>
		<voice sentence="Hand me your purse!"/>
	</voices>
	<loot>
		<item id="2148" countmax="28" chance="16000"/><!-- gold coin -->
		<item id="2386" chance="48000"/><!-- axe -->
		<item id="2511" chance="33700"/><!-- brass shield -->
		<item id="2649" chance="26000"/><!-- leather legs -->
		<item id="2666" countmax="2" chance="9000"/><!-- meat -->
		<item id="1987" chance="100000"><!-- bag -->
			<inside>
		<item id="2398" chance="11500"/><!-- mace -->
		<item id="2458" chance="8250"/><!-- chain helmet -->
		<item id="2465" chance="2200"/><!-- brass armor -->
		<item id="2509" chance="1500"/><!-- steel shield -->
		<item id="2459" chance="1000"/><!-- iron helmet -->
		<item id="2391" chance="750"/><!-- war hammer -->
			</inside>
		</item>
	</loot>
</monster>

Monsters.xml
Code:
<monster name="Bandit Mounted" file="Outlaws/bandit mounted.xml"/>
 

Similar threads

Back
Top