View Single Post
  #3  
Old 04-13-2011, 09:11 AM
warlorn81
Fire Beetle
 
Join Date: Apr 2008
Location: fl
Posts: 18
Default

if you are using the newest peq database and yer having problems getting into the game once u make a character run this querry

Code:
ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
i was having the same issue and that fixed it for me
Reply With Quote