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

Windows How to organise monsters RME

Powtreeman

Member
Joined
Sep 26, 2011
Messages
400
Reaction score
6
Location
USA
How can I organise the monsters in my RME so that they arent all piled in the "Others" section?
 
first add them to creatures.xml with look type u need as well

second go into extension folder ..
u can see creatures.xml
open it

Code:
    <tileset name="Pharaohs">
        <creatures>
            <creature name="Dipthrah"/>
            <creature name="Omruc"/>
            <creature name="Vashresamun"/>
            <creature name="Mahrdis"/>
            <creature name="Ashmunrah"/>
            <creature name="Rahemos"/>
        </creatures>
    </tileset>

so i can create new tileset like that
Code:
    <tileset name="Evils">
        <creatures>
            <creature name="Evil Skills"/>
            <creature name="Evil Eyes"/>
            <creature name="Evil Hells"/>
            <creature name="Evil Skillz"/>
            <creature name="Evil Nights"/>
            <creature name="Evils Should Have a Sex :P"/>
        </creatures>
    </tileset>

and in creatures.xml u should register them like this
Code:
  <creature name="Evil Skillz" type="monster" looktype="87" lookhead="20" lookbody="30" looklegs="40" lookfeet="50"/>
 
Last edited:
Back
Top