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

town_id 5 ?

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
When i creat a character in geisor the town_id always be 5 .. and i wanna have it to 1 ? S:
 
Wow thx rep for u !
i more problem my console spam this how do i fix that s:
mysql_real_query(): UPDATE `players` SET `onlinetime7`=players.onlinetime6, `onl
inetime6`=players.onlinetime5, `onlinetime5`=players.onlinetime4, `onlinetime4`=
players.onlinetime3, `onlinetime3`=players.onlinetime2, `onlinetime2`=players.on
linetime1, `onlinetime1`=players.onlinetimetoday, `onlinetimetoday`=0; - MYSQL E
RROR: Unknown column 'onlinetime7' in 'field list' (1054)
mysql_real_query(): UPDATE `players` SET `exphist7`=players.exphist6, `exphist6`
=players.exphist5, `exphist5`=players.exphist4, `exphist4`=players.exphist3, `ex
phist3`=players.exphist2, `exphist2`=players.exphist1, `exphist1`=players.experi
ence-players.exphist_lastexp, `exphist_lastexp`=players.experience; - MYSQL ERRO
R: Unknown column 'exphist7' in 'field list' (1054)
mysql_real_query(): UPDATE `players` SET `onlinetimetoday`=players.onlinetimetod
ay+60, `onlinetimeall`=players.onlinetimeall+60 WHERE `online` = 1; - MYSQL ERRO
R: Unknown column 'onlinetimetoday' in 'field list' (1054)
 
Code:
ADD `onlinetimetoday` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime1` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime2` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime3` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime4` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime5` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime6` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetime7` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetimeall` BIGINT( 255 ) NOT NULL DEFAULT '0';

Execute in database
 
Back
Top