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

Wild Warrior as training monk

HurricaneBE

New Member
Joined
Jan 30, 2012
Messages
7
Reaction score
0
I want to change the wild warrior as a training monk with infinite health, im pretty new in all this so if its possible could I have some advice?

Thankyou Grtz !
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Wild Warrior" nameDescription="a wild warrior" race="blood" experience="0" speed="0" manacost="0">
  <health now="50000" max="50000"/>
  <look type="131" head="38" body="38" legs="38" feet="38" corpse="3058"/>
  <targetchange interval="0" chance="0"/>
  <strategy attack="0" defense="0"/>
  <flags>
    <flag summonable="0"/>
    <flag attackable="1"/>
    <flag hostile="1"/>
    <flag illusionable="0"/>
    <flag convinceable="0"/>
    <flag pushable="0"/>
    <flag canpushitems="0"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="1"/>
    <flag staticattack="100"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="melee" interval="2000" skill="0" attack="0"/>
  </attacks>
    <defenses armor="0" defense="0">
      <defense name="healing" interval="10000" chance="100" min="50000" max="50000"/>
    </defenses>
  <immunities>
    <immunity physical="0"/>
    <immunity energy="0"/>
    <immunity fire="0"/>
    <immunity poison="0"/>
    <immunity lifedrain="0"/>
    <immunity paralyze="1"/>
    <immunity outfit="1"/>
    <immunity drunk="1"/>
    <immunity invisible="1"/>
  </immunities>
</monster>
 
Easy, just open your training monk XML file with a Notepad, I recommend you to youse Notepad++.

Then change this line:
XML:
<look type="x" head="x" body="x" legs="x" feet="x" corpse="x"/>

To this:
XML:
<look type="131" head="38" body="38" legs="38" feet="38" corpse="3058"/>

Done, you have a Training monk with a wild warrior 'outfit'.
 
Back
Top