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

error console devovorga, Snake God Essence, and lizard abomination

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
923
Location
Chile
Hi, well like it says on the title, i have a problem when i try to reload my monsters with those new monster i wrote on the tittle.
This is what happens:

XML:
[29/01/2013 19:03:24] [Warning - Monsters::loadMonster] Cannot load monster (Lizard Abomination) file (data/monster/Lizard Abomination.xml).
[29/01/2013 19:03:24] Info: failed to load external entity "data/monster/Lizard Abomination.xml"


[29/01/2013 19:03:24] Reloaded monsters.

same thing with all, why is that? :/

- - - Updated - - -

8.6 ot server
 
sorry i copied a old one, look this is the problem i have:

XML:
[29/01/2013 19:33:06] [Warning - Monsters::loadMonster] Cannot load monster (Snake God Essence) file (data/monster/Snake God Essence.xml).
[29/01/2013 19:33:06] Info: failed to load external entity "data/monster/Snake God Essence.xml"

and yes, i have this in monsters.xml

XML:
<monster name="Snake God Essence" file="Snake God Essence.xml"/>
 
yeah, this is the script i have;

LUA:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Snake God Essence" nameDescription="a Snake God Essence" race="venom" experience="650000" speed="2220" manacost="0">
<health now="350000" max="350000"/>
<look type="356" corpse="8593"/>
<targetchange interval="1000" chance="15"/>
<strategy attack="100" defense="0"/>
<flags>
<flag summonable="1"/>
<flag attackable="1"/>
<flag hostile="1"/>
<flag illusionable="1"/>
<flag convinceable="0"/>
<flag pushable="0"/>
<flag canpushitems="1"/>
<flag canpushcreatures="0"/>
<flag targetdistance="1"/>
<flag staticattack="90"/>
<flag runonhealth="0"/>
</flags>
<attacks>
<attack name="melee" interval="2000" skill="230" attack="336"/>
<attack name="poison" interval="1000" chance="12" range="1" radius="1" target="1" min="-4505" max="-5215"/>
<attribute key="areaEffect" value="poison"/>
</attacks>
<defenses armor="16" defense="19"/>
<elements>
<element physicalPercent="-15"/>
<element holyPercent="1"/>
<element deathPercent="20"/>
<element firePercent="30"/>
<element energyPercent="-15"/>
<element icePercent="15"/>
<element earthPercent="70"/>
</elements>
<immunities>
<immunity invisible="1"/>
</immunities>
<voices interval="5000" chance="10">
<voice sentence="GHUSHUSF ZERRT!"/>
</voices>
<loot>
<item id="2160" countmax="100" chance="36500"/><!-- gold coin -->
<item id="12608" chance="300"/><!-- terramite legs -->
<item id="12604" chance="500"/><!-- terramite eggs -->
<item id="8301" countmax="5" chance="1000"/><!-- terramite shell -->
</loot>
</monster>
 
Back
Top