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

MySql Error

RunarM

Finally back
Joined
Jul 17, 2008
Messages
1,636
Reaction score
34
Location
Norway/Tromsø
I get this erron on my Forgottenserver.exe:
Im using the forgotten server 0.3.4 PL2

Code:
[08/08/2009 15:46:59] mysql_real_query(): SELECT `id`, `account_id`, `group_id`, `sex`, `vocation`, `experience`, `level`, `maglevel`, `health`, `healthmax`, `blessings`, `mana`, `manamax`, `manaspent`, `soul`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `posx`, `posy`, `posz`, `cap`, `lastlogin`, `lastlogout`, `lastip`, `conditions`, `redskulltime`, `redskull`, `guildnick`, `rank_id`, `town_id`, `balance`, `stamina`, `direction`, `loss_experience`, `loss_mana`, `loss_skills`, `loss_containers`, `loss_items`, `marriage`, `promotion`, `description` FROM `players` WHERE `name` = 'Maku' AND `world_id` = 0 AND `deleted` = 0; - MYSQL ERROR: Unknown column 'redskulltime' in 'field list' (1054)
[08/08/2009 15:47:02] mysql_real_query(): SELECT `id`, `account_id`, `group_id`, `sex`, `vocation`, `experience`, `level`, `maglevel`, `health`, `healthmax`, `blessings`, `mana`, `manamax`, `manaspent`, `soul`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `posx`, `posy`, `posz`, `cap`, `lastlogin`, `lastlogout`, `lastip`, `conditions`, `redskulltime`, `redskull`, `guildnick`, `rank_id`, `town_id`, `balance`, `stamina`, `direction`, `loss_experience`, `loss_mana`, `loss_skills`, `loss_containers`, `loss_items`, `marriage`, `promotion`, `description` FROM `players` WHERE `name` = 'Maku the third' AND `world_id` = 0 AND `deleted` = 0; - MYSQL ERROR: Unknown column 'redskulltime' in 'field list' (1054)

Also i get this:
Code:
[08/08/2009 15:53:36] Lua Script Error: [GlobalEvent Interface] 
[08/08/2009 15:53:36] data/globalevents/scripts/shop.lua:onThink

[08/08/2009 15:53:36] luaResultFree(). Result not found.

[08/08/2009 15:53:36] Lua Script Error: [GlobalEvent Interface] 
[08/08/2009 15:53:36] data/globalevents/scripts/broadcast.lua:onThink

[08/08/2009 15:53:36] luaResultFree(). Result not found.

How can i fix that oO?

Thanks for the help,
Runarm.
 
Last edited:
Try dropping your database and re-importing it via SQL Query.. unless your server is already running, then that'd be bad.
 
ALTER TABLE `players` ADD `redskulltime` BIGINT NOT NULL DEFAULT 0;
ALTER TABLE `players` ADD `redskull` SMALLINT NOT NULL DEFAULT 0;
 
Back
Top