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

Solved Brush issue in Remere

Caduceus

Unknown Member
Joined
May 10, 2010
Messages
321
Solutions
2
Reaction score
24
I am trying to add a new border the lava brush. However, when I try to add it to the ground as an outer border to a tar pit, I get errors on map editor loading saying
Errors while loading brush "lava"
To brush tar pit doesn't exist.

<border align="outer" id="135"/> worked out as I wanted.


grounds.xml
Code:
<brush name="lava" type="ground" server_lookid="598" z-order="150">
        <item id="598" chance="11"/>
        <item id="599" chance="1"/>
        <item id="600" chance="1"/>
        <item id="601" chance="1"/>
     
        <border align="inner" to="cave" id="18"/>
        <border align="inner" to="cave (alternate border)" id="18"/>
        <border align="inner" to="mountain top ground" id="30"/>
        <border align="outer" id="135" to="tar pit"/>
     
        <friend name="sea"/>
    </brush>

tar pit brush
Code:
<brush name="tar pit" type="ground" server_lookid="708" z-order="105">
        <item id="708" chance="850"/>
        <item id="709" chance="50"/>
        <item id="710" chance="50"/>
        <item id="711" chance="50"/>
     
        <friend name="sea"/>
    </brush>

tilesets.xml (brush is registered per default)
Code:
<brush name="tar pit"/>
 
Last edited:
Back
Top