• 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 Map editor does not recognize depots

Dankoo

Active Member
Joined
Sep 4, 2010
Messages
1,007
Reaction score
27
dz6la1.jpg


Client Version: 8.60
Map Version: OTServ 0.6.1

map editor's items.xml

LUA:
<item fromid="2589" toid="2592" article="a" name="locker">
		<attribute key="type" value="depot" />
		<attribute key="containerSize" value="30" />
	</item>

I've opened another map here, and got this:

27yv38g.jpg


Items.otb bug but working depots

Client Version: 8.54
Map Version: OTServ 0.6.1

-- I've opened some other 8.54 map and they also have the bug.. I'm like, wtf..?? what's the difference between them? Why does one works and another don't? o.o what could it be?
 
Last edited:
Ok, I've been debugging here and got this

Steps I've done:

Open RME
Create new map (8.60)
Create a depot item, but didn't work

Changed map to versio 8.54
Depot working

Changed files from 8.54 folder to 8.60, changed all but didn't work

So I think the problem is outside 860 folder
 
I belive you have the wrong items otbm/xml.
From what i understand there is a (good 8.54 items) & (bad 8.54 items) same goes for the 8.6 version.
Dont know why this is and how this happend, but when ur oppening maps sometime you see (locate your bad 8.54version) and vice versa.
Download another items.otb and try again
 
RME doesn't support fromid & toid, use itemid and copy the same thing 4 times for each id. or simply use the old items.xml
 
It is working now Cykotitan, thanks!

Here's the code in case any one else needs it:

LUA:
	<item id="2589" article="a" name="locker">
		<attribute key="type" value="depot" />
		<attribute key="containerSize" value="30" />
	</item>
	<item id="2590" article="a" name="locker">
		<attribute key="type" value="depot" />
		<attribute key="containerSize" value="30" />
	</item>
	<item id="2591" article="a" name="locker">
		<attribute key="type" value="depot" />
		<attribute key="containerSize" value="30" />
	</item>
	<item id="2592" article="a" name="locker">
		<attribute key="type" value="depot" />
		<attribute key="containerSize" value="30" />
	</item>
 
Back
Top