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

(RME) Order inside of tilesets problem

Sportacus

Intermediate OT User
Joined
Aug 3, 2008
Messages
718
Reaction score
100
I am 'customizing' RME to be more optimal for myself.

One of things was that I wanted to make the creatures categorized better so they are easier to find.

I also want to control what order the monsters are in, which automatically goes to ABC order, but I want to put them in order of strongest to weakest.. I also wanted to include the boss monsters in the same tileset, and have them listed after the regular spawn monsters...


This should have been really simple, since after=" " lets you control the order inside of the tabs.. but it doesn't seem to be working for creatures.. could someone tell me whats wrong?

I'll give an example of what I am trying to do.

Code:
    <tileset name="Amazons">
        <creatures>
            <creature name="Amazon"/>
            <creature name="Valkyrie"/>
            <creature name="Witch"/>
   
            <creature name="--Bosses (Not a Monster)--" after="Witch" />
           
            <creature name="Xenia" after="--Bosses (Not a Monster)--" />
            <creature name="Yaga The Crone" after="Xenia" />
        </creatures>
    </tileset>   
   
   
    <tileset name="Annelids">
        <creatures>
            <creature name="Carrion Worm" after="Rotworm" />
            <creature name="Drillworm" after="Carrion Worm"/>
            <creature name="Enraged Bookworm"/>
            <creature name="Rift Worm" after="Drill worm"/>
            <creature name="Rotworm" after="Enraged Bookworm" />
                   
        </creatures>
    </tileset>



And it just completely ignores my "after=" entries and just puts them in ABC order.

What am I doing wrong?
 
Have you tried putting numbers in front of the tileset names? numbers usually trump alphabetical order

like
Code:
<tileset name="1 Amazons">
<tileset name="2  Annelids">
 
Back
Top Bottom