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

Hello Otland! I need help with some easy parts here!

Byllan

Member
Joined
Dec 29, 2009
Messages
1,079
Reaction score
12
Location
SWEDEN
Need to
Add Skill Scroll
Fix Addon doll so it's support the newest addons
Fix Guild Logo so you can add picture
Make so husky don't be invisible when it's get killed
 
I'm too lazy to post the solution to the first 3, but for the Husky...
Replace your Husky.xml with this..

XML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Husky" nameDescription="a husky" race="blood" experience="0" speed="205" manacost="420">
  <health now="140" max="140"/>
  <look type="258" head="20" body="30" legs="40" feet="50" corpse="7316"/>
  <targetchange interval="2000" chance="12"/>
  <strategy attack="100" defense="0"/>
  <flags>
    <flag summonable="1"/>
    <flag attackable="1"/>
    <flag hostile="0"/>
    <flag illusionable="1"/>
    <flag convinceable="1"/>
    <flag pushable="0"/>
    <flag canpushitems="0"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="1"/>
    <flag staticattack="90"/>
    <flag runonhealth="65"/>
  </flags>
  <defenses armor="7" defense="10"/>
  <voices interval="5000" chance="8">
    <voice sentence="Grrrrrrr"/>
    <voice sentence="Ruff, ruff!"/>
    <voice sentence="Yoooohhuuuu!" yell="1"/>
  </voices>
</monster>

Or, if you've edited the voices, and loot, just change the corpse ID

Code:
corpse="7316"
 
Back
Top