01-17-2012, 11:38 AM
Isnt much easier to delete all records from t_users.
It can be made php script for a player when he gets a "ID already in use", he will login into his account and clear his account from t_users.
$query = "DELETE FROM t_users WHERE a_portal_index = " . $account_index . ";";
$result = mysql_query($query);
This problem happens because the connector forgets to remove the account from t_users.
EDIT:
By the Way your sql file inserts unnecessary accounts in to t_users with a_portal_index.

