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

Requesting monster called "Slender"

Joriku

Working in the mines, need something?
Premium User
Joined
Jul 16, 2016
Messages
1,140
Solutions
15
Reaction score
431
Location
Sweden
Hello, iam setting up my own map and looking for a monster called "Slender" that yells out like grim reaper

Example Yell:
<voices interval="5000" chance="10">
<voice sentence="Come In To The Woods" yell="1"/>
<voice sentence="Dont Take My Pages!" yell="1"/>
<voice sentence="*Slender*" yell="1"/>
</voices>

I tryed to add my own slender monster and it worked but i coud not add it on map editor or ingame
 
Here's something really basic.

slender.xml


Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Slender" nameDescription="Slender" experience="0" speed="260" race="undead">
   <health now="800" max="800"/>
   <strategy attack="100" defense="0"/>
   <targetchange speed="0" chance="8"/>
   <look type="320" corpse="9915"/>
   <flags>
     <flag summonable="0"/>
     <flag attackable="1"/>
     <flag hostile="1"/>
     <flag illusionable="0"/>
     <flag convinceable="0"/>
     <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" min="-0" max="-5"/>
   </attacks>
   <defenses armor="1" defense="2"/>
   <immunities>
     <immunity physical="0"/>
     <immunity energy="0"/>
     <immunity fire="0"/>
     <immunity earth="0"/>
     <immunity lifedrain="0"/>
     <immunity paralyze="0"/>
     <immunity outfit="0"/>
     <immunity drunk="0"/>
     <immunity invisible="0"/>
   </immunities>
   <voices interval="5000" chance="10">
     <voice sentence="Come In To The Woods" yell="1"/>
     <voice sentence="Dont Take My Pages!" yell="1"/>
     <voice sentence="*Slender*" yell="1"/>
   </voices>
   <loot>
     <item id="2148" chance="70000"/> <!-- gold coin -->
   </loot>
</monster>

Red
 
Here's something really basic.

slender.xml


Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Slender" nameDescription="Slender" experience="0" speed="260" race="undead">
   <health now="800" max="800"/>
   <strategy attack="100" defense="0"/>
   <targetchange speed="0" chance="8"/>
   <look type="320" corpse="9915"/>
   <flags>
     <flag summonable="0"/>
     <flag attackable="1"/>
     <flag hostile="1"/>
     <flag illusionable="0"/>
     <flag convinceable="0"/>
     <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" min="-0" max="-5"/>
   </attacks>
   <defenses armor="1" defense="2"/>
   <immunities>
     <immunity physical="0"/>
     <immunity energy="0"/>
     <immunity fire="0"/>
     <immunity earth="0"/>
     <immunity lifedrain="0"/>
     <immunity paralyze="0"/>
     <immunity outfit="0"/>
     <immunity drunk="0"/>
     <immunity invisible="0"/>
   </immunities>
   <voices interval="5000" chance="10">
     <voice sentence="Come In To The Woods" yell="1"/>
     <voice sentence="Dont Take My Pages!" yell="1"/>
     <voice sentence="*Slender*" yell="1"/>
   </voices>
   <loot>
     <item id="2148" chance="70000"/> <!-- gold coin -->
   </loot>
</monster>

Red

No errors in the console, but i cant spawn him (seeing him on the map either)
 
Here's something really basic.

slender.xml


Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Slender" nameDescription="Slender" experience="0" speed="260" race="undead">
   <health now="800" max="800"/>
   <strategy attack="100" defense="0"/>
   <targetchange speed="0" chance="8"/>
   <look type="320" corpse="9915"/>
   <flags>
     <flag summonable="0"/>
     <flag attackable="1"/>
     <flag hostile="1"/>
     <flag illusionable="0"/>
     <flag convinceable="0"/>
     <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" min="-0" max="-5"/>
   </attacks>
   <defenses armor="1" defense="2"/>
   <immunities>
     <immunity physical="0"/>
     <immunity energy="0"/>
     <immunity fire="0"/>
     <immunity earth="0"/>
     <immunity lifedrain="0"/>
     <immunity paralyze="0"/>
     <immunity outfit="0"/>
     <immunity drunk="0"/>
     <immunity invisible="0"/>
   </immunities>
   <voices interval="5000" chance="10">
     <voice sentence="Come In To The Woods" yell="1"/>
     <voice sentence="Dont Take My Pages!" yell="1"/>
     <voice sentence="*Slender*" yell="1"/>
   </voices>
   <loot>
     <item id="2148" chance="70000"/> <!-- gold coin -->
   </loot>
</monster>

Red

(Error talkaction)
monster with name 'Slender' not found
 
Back
Top