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

Simone Map Editor Houses

jeanstruk

New Member
Joined
Jul 14, 2018
Messages
15
Reaction score
0
How do I create houses through Simone Map Editor? When I make them and save the error map in the distro "couldnt determine the map format". The server is a Yurots 7.6
 
It's a bit tedious to create houses in YurOTs. You have to manually (unless you create a tool for it) add house tiles in house.xml, like such:
XML:
<house name="Small Street IV">
<tile x="146" y="43" z="6"/>
<tile x="146" y="44" z="6"/>
<tile x="146" y="45" z="6"/>
</house>
<house name="Small Street V">
<tiles fromx="143" fromy="43" fromz="5" tox="144" toy="45" toz="5"/>
</house>

Then you also need to mark the house front door in data/houses/yourhouse.xml

XML:
<?xml version="1.0"?>
<house><frontdoor x="134" y="61" z="7"/><owner name=""/></house>
 
Back
Top