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

save error

kalleanka39

New Member
Joined
May 1, 2009
Messages
4
Reaction score
0
hello!nofing is saving on the serv i erros all the time:


SQLITE ERROR sqlite_exec: DELETE FROM `map_store`; no such table: map_store
[02/02/2010 22:55:32] Notice: Map save (binary) took : 0 s


SQLITE ERROR sqlite_exec: UPDATE `players` SET `level` = 1, `group_id` = 1, `vocation` = 3, `health` = 185, `healthmax` = 185, `experience` = 0, `lookbody` = 44, `lookfeet` = 44, `lookhead` = 44, `looklegs` = 44, `looktype` = 128, `lookaddons` = 0, `maglevel` = 0, `mana` = 35, `manamax` = 35, `manaspent` = 0, `soul` = 100, `town_id` = 1, `posx` = 31, `posy` = 31, `posz` = 7, `cap` = 420, `sex` = 1, `lastlogin` = 1265147192, `lastip` = 2136008529, `conditions` = x'', `redskulltime` = 0, `redskull` = 0, `lastlogout` = 1265147195, `blessings` = 0, `guildnick` = '', `rank_id` = 0 WHERE `id` = 7 LIMIT 1; near "LIMIT": syntax error


plzz some 1 help me!!!

ooo adn its armonia 5.4
 
For map store just open your s3db file with sqlite studio And change the name to the table tile_store to map_store it worked for me
 
For map store just open your s3db file with sqlite studio And change the name to the table tile_store to map_store it worked for me
it's tile_items, and it can't work since they don't have the same columns.
SQL:
CREATE TABLE "map_store" (
	"house_id" INTEGER NOT NULL,
	"data" BLOB NOT NULL
)
but you shouldn't use sqlite at all, it's likely to cause issues
 
Back
Top