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

malakam

New Member
Joined
May 9, 2008
Messages
43
Reaction score
0
Hi İ Have A Problem With Real Map

İ have a real map and website i opened a character in website and when i want to login in my ot "Your Character Could Not Be Loaded" <<<


and
[31/01/2010 14:45:21] 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` = 'Baba' AND `world_id` = 0 AND `deleted` = 0; - MYSQL ERROR: Unknown column 'redskulltime' in 'field list' (1054)

Please HElp ME ! !
 
goto yourip/phpmyadmin
SQL and use this querys

Lua:
ALTER TABLE `players` ADD `redskulltime` BIGINT NOT NULL DEFAULT 0; 
ALTER TABLE `players` ADD `redskull` SMALLINT NOT NULL DEFAULT 0;
 
Back
Top