View Single Post
  #6  
Old 05-12-2011, 01:13 PM
KingMort
Banned
 
Join Date: Sep 2006
Posts: 841
Default

Quote:
Originally Posted by rencro View Post
Then in your database, go to "account table" and change the status of all your players to 0.. See if that resolves your issue..
Which you can do pretty easy for the entire Table just by running this query.

Code:
UPDATE `account` SET `status` = '0' WHERE `account`.`status` = 20;
Reply With Quote