• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved An interesting error ;x

Felipe Monteiro

Webmaster
Joined
Feb 27, 2009
Messages
460
Reaction score
59
Location
Brasil
My distro is showing an error in the map, but the position is invalid

Code:
[Warning - IOMapSerialize::loadMapBinary] Unserialization error [1] for item type 2589
[Error - IOMapSerialize::loadMapBinary] Unserialization of invalid tile at position ( 13056 / 15782 / 167 )

I hope someone can help me!
Thx anyway
 
Open the map and delete item type 2589 to get rid of first error.

Execute this in PMA.
SQL:
DELETE FROM `tile_items` WHERE `itemtype` = NULL
 
Oh yeah, forgot the ID. :p

In that case, your database is corrupted. Create a clean database from mysql schema.
 
Open the map and delete item type 2589 to get rid of first error.

Execute this in PMA.
SQL:
DELETE FROM `tile_items` WHERE `itemtype` = NULL

It is very unlikely this has anything to do with the database...

Open the map in the map editor, check pos 13056 / 15782 / 167, rebuild the deput (item 2589) with correct parameters (town id etc). Might work.
 
I've experienced that error myself and I executed that in database to get rid of it. :p

Search after threads with similar error message and you might find a solution.
 
It is very unlikely this has anything to do with the database...

Open the map in the map editor, check pos 13056 / 15782 / 167, rebuild the deput (item 2589) with correct parameters (town id etc). Might work.

It is a thing with database.


Use the query that Ninja said and execute it. It should fix any problems. (No need for coordinates)
 
It's possible that a dp in a house zone is causing this, if you have that, try to delete it and see if this changes anything.
 
Open the map and delete item type 2589 to get rid of first error.

Execute this in PMA.
SQL:
DELETE FROM `tile_items` WHERE `itemtype` = NULL

Perfect your Help friend.
Rep+

- - - Updated - - -

It's possible that a dp in a house zone is causing this, if you have that, try to delete it and see if this changes anything.

Thank you very much, with your help and Ninja i fix my problem !
Rep+
 
Back
Top