• 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] "Errors while loading brush..."

Worr

Veteran OT User
Joined
Jan 23, 2011
Messages
1,449
Reaction score
371
Location
Sweden
When I load RME there is an error message:
"Errors while loading brush. Can't create item from doodad item note."

The doodad brush still appears in the list but I can't use the rotation option. The default (facing south) works but if I press z or x to rotate it, the item will disappear instead of facing east. When I rotate it back to south it will appear again. This is from my doodad.xml:

Code:
    <brush name="lava fountain" type="doodad" server_lookid="5074" draggable="true" on_blocking="true" thickness="100/100">
        <alternate> -- south --
            <item id="5074" chance="10"/>
        </alternate>
        <alternate> -- east --
            <item id="5075    " chance="10"/>
        </alternate>
    </brush>

And this is the part from tilesets.xml:
(Under ---fountains---)

Code:
    <tileset name="Exterior">
        <doodad>
            <brush name="stone altar"/>
            <brush name="decorative altar"/>
            <brush name="sacrifical stone"/>
            <brush name="sacrifical stone with blood"/>
           
            -- coffins --
            <brush name="stone coffin (no rose)"/>
            <brush name="stone coffin (yellow rose)"/>
            <brush name="stone coffin (blue rose)"/>
            <brush name="stone coffin (red rose)"/>
            <brush name="buried stone coffin"/>
            <item fromid="1406" toid="1409"/>
            <brush name="sarcophagus"/>
           
            -- Campfires --
            <item fromid="1421" toid="1428"/>
            <item fromid="1481" toid="1486"/>
            <item fromid="2601" toid="2605"/>
           
            -- fountains --
            <brush name="ancient fountain - off"/>
            <brush name="ancient fountain - on"/>
            <brush name="water well"/>
            <brush name="lava fountain"/>
           
            <brush name="marble fountain - on"/>
            <brush name="marble fountain - off"/>
            <item id="1378"/>
            <brush name="normal fountain - on"/>
            <brush name="normal fountain - off"/>
            <brush name="normal fountain - off"/>
            <brush name="horizontal mill"/>
            <brush name="vertical mill"/>
            <brush name="draw well"/>
            <brush name="fishing net"/>
        </doodad>
        <raw>
            <item fromid="486"/>
            <item fromid="1280" toid="1283"/>
            <item fromid="1360" toid="1385"/>
            <item fromid="1406" toid="1420"/>
            <item fromid="1421" toid="1428"/>
            <item fromid="1429" toid="1486"/>
            <item fromid="2219" toid="2259"/>
            <item fromid="2334"/>
            <item fromid="2555"/>
            <item fromid="2593"/>
            <item fromid="2601" toid="2605"/>
            <item fromid="2610" toid="2613"/>
            <item fromid="2616" toid="2623"/>
            <item fromid="3697" toid="3710"/>
            <item fromid="3715" toid="3726"/>
            <item fromid="3718" toid="3742"/>
            <item fromid="3802" toid="3804"/>
        </raw>
    </tileset>

Any idea what is causing this error? I can't see what is wrong. Sure the doodad can't be rotated but both ID's listed in the doodad item note are correct.

Thanks in advance,
Worr
 
Solution
And if you try this:
Code:
    <brush name="lava fountain" type="doodad" server_lookid="5074" draggable="true" on_blocking="true" thickness="100/100">
        <alternate> -- south --
            <item id="5074" chance="10"/>
        </alternate>
        <alternate> -- east --
            <item id="5075" chance="10"/> -- Without any space on "5075        "
        </alternate>
    </brush>
And if you try this:
Code:
    <brush name="lava fountain" type="doodad" server_lookid="5074" draggable="true" on_blocking="true" thickness="100/100">
        <alternate> -- south --
            <item id="5074" chance="10"/>
        </alternate>
        <alternate> -- east --
            <item id="5075" chance="10"/> -- Without any space on "5075        "
        </alternate>
    </brush>
 
Solution
Back
Top