• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

OT Problems

DUplicate uniqueid = u have for example 2 scripts and both of them use the same uniqueid... so they won't work... - or maybe just one of them will work

House error - just go to that position and delete that item...

Cannot find terror bird =
here u are: in monsters folder, make file called terror bird.xml
and paste this into it
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Terror Bird" nameDescription="a terror bird" race="blood" experience="150" speed="280" manacost="490">
	<health now="300" max="300"/>
	<look type="218" corpse="6057"/>
	<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="0"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="1"/>
		<flag targetdistance="1"/>
		<flag staticattack="90"/>
		<flag runonhealth="0"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" skill="46" attack="37"/>
	</attacks>
	<defenses armor="13" defense="21"/>
	<elements>
		<element energyPercent="20"/>
		<element icePercent="20"/>
		<element firePercent="-10"/>
		<element earthPercent="-10"/>
		<element deathPercent="-5"/>
	</elements>
	<voices interval="5000" chance="10">
		<voice sentence="CRAAAHHH!"/>
		<voice sentence="Gruuuh Gruuuh."/>
		<voice sentence="Carrah Carrah!"/>
	</voices>
	<loot>
		<item id="3976" countmax="10" chance="50000"/><!-- worm -->
		<item id="2148" countmax="20" chance="100000"/><!-- gold coin -->
		<item id="2406" chance="33333"/><!-- short sword -->
		<item id="2209" chance="2000"/><!-- club ring -->
		<item id="2463" chance="3000"/><!-- plate armor -->
		<item id="2490" chance="4000"/><!-- dark helmet -->
		<item id="2129" chance="6666"/><!-- wolf tooth chain -->
		<item id="2666" countmax="3" chance="33333"/><!-- meat -->
		<item id="3976" countmax="10" chance="50000"/><!-- worm -->
		<item id="3976" countmax="10" chance="30000"/><!-- worm -->
		<item id="1987" chance="100000"><!-- bag -->
			<inside>
				<item id="2513" chance="2500"/><!-- battle shield -->
				<item id="2511" chance="2857"/><!-- brass shield -->
				<item id="2381" chance="5000"/><!-- halberd -->
				<item id="3970" chance="500"/><!-- feather headdress -->
				<item id="2148" countmax="10" chance="20000"/><!-- gold coin -->
				<item id="2671" countmax="3" chance="33333"/><!-- ham -->
			</inside>
		</item>
	</loot>
</monster>

then, in a file monsters.xml write somewhere this line:

Code:
<monster name="Terror Bird" file="terror bird.xml"/>

repp++ if i helped please :)) i need this ;P
 
Sorry, actually before I give you the link, will you try doing one more thing with that terror bird script...

In your monster folder, make a folder called Birds <- dont forget capital letter for "B"

now, paste that lua file with terror bird script there into that birds folder...

Now, into monsters.xml, paste this line somewhere at the bottom maybe...

Code:
	<!-- Birds -->
	<monster name="Terror Bird" file="Birds/terror bird.xml"/>

and tell me if it will work.
 
Last edited:

Similar threads

Back
Top