#--- In case you get an error like the one below run this batch. #--- This is caused by your character tables being to old. #--- Account: 'XXXXXX' Login. #--- Loading char guid XXXX from account XXXX. #--- SQL: SELECT `guid`,`realm`,`account`,`data`,`name`,`race`,`class`,`position_x`,`position_y`,`position_z`,`map`,`orientation`,`taximask`,`online`,`highest_rank`,`standing`, `rating`,`cinematic`,`totaltime`,`leveltime`,`rest_bonus`,`logout_time`,`is_logout_resting` FROM `character` WHERE `guid` = 'XXXX' #--- query ERROR: Unknown column 'rest_bonus' in 'field list' ALTER TABLE `character` ADD `logout_time` int(11) NOT NULL DEFAULT '0', ADD `is_logout_resting` int(11) NOT NULL DEFAULT '0', ADD `rest_bonus` FLOAT NOT NULL DEFAULT '0';