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

Windows Console Errors 0.3.6pl1

Sublime

11.12.11
Joined
Mar 18, 2010
Messages
1,427
Reaction score
61
Location
Mexico
Hi everyone!
I've got this in my console, but i don't know what could be =(
Code:
[26/06/2010 15:38:34] [Error - CreatureScript Interface] 
[26/06/2010 15:38:34] buffer:onKill
[26/06/2010 15:38:34] Description: 
[26/06/2010 15:38:34] [string "loadBuffer"]:104: attempt to index a number value
[26/06/2010 15:38:34] stack traceback:
[26/06/2010 15:38:34] 	[string "loadBuffer"]:104: in function <[string "loadBuffer"]:6>
[26/06/2010 15:38:35] mysql_real_query(): UPDATE `players` SET `frags` = `frags` + 1 WHERE `id` = 14; - MYSQL ERROR: Unknown column 'frags' in 'field list' (1054)
[26/06/2010 15:38:35] mysql_real_query(): SELECT `invited_to`, `invited_by`, `in_war_with`,`war_time` FROM `guilds` WHERE `id` = 4 - MYSQL ERROR: Unknown column 'invited_to' in 'field list' (1054)
PD: I've got this ^ spammed in console MANY times.
thanks 4 ur attention! =)
 
PHP:
ALTER TABLE `players` ADD `frags` INT( 11 ) NOT NULL DEFAULT '0';
PHP:
ALTER TABLE `guilds` 
ADD `invited_to` INT( 11 ) NOT NULL ,
ADD `invited_by` INT( 11 ) NOT NULL ,
ADD `in_war_with` INT( 11 ) NOT NULL ,
ADD `kills` INT( 11 ) NOT NULL ,
ADD `show` SMALLINT( 1 ) NOT NULL ,
ADD `war_time` INT( 11 ) NOT NULL ;
 
Back
Top