I have tried everything to try and fix the error 1017 that I get when trying to connect to the WR server. eqfix didn't work.
The only thing Ihave found that I have not tried is this:
http://www.eqemulator.net/forums/viewtopic.php?t=13021
Because the world server checks the users login server id along with their account name, whenever you signed up for the second time and got a new login id, it wont match the one that the server has in its database, so it will reject the connection. The fix is pretty easy.
Note: This is for server admins with database access.
Say the persons account name was Bob.
Update account set name='OLDBob' where name='Bob';
Have the person login. To restore their characters and stuff:
Select lsaccount_id from account where name='Bob';
Write that down.
Delete from account where name='Bob';
Update account set lsaccount_id=(WHATEVER ID YOU GOT FROM THE ABOVE SELECT QUERY),name='Bob' where name='OLDBob';
Thats it, it should work fine after that.
_________________
Lethal Encounter
I'm not sure if this will actually help me, but it is possible that I signed up twice since I was having troubles earlier and I tried to fix it over the span of a few days. If anybody could let me know if this is a possible fix or there are any other fixes I would greatly appreciate it. Thanks.
The only thing Ihave found that I have not tried is this:
http://www.eqemulator.net/forums/viewtopic.php?t=13021
Because the world server checks the users login server id along with their account name, whenever you signed up for the second time and got a new login id, it wont match the one that the server has in its database, so it will reject the connection. The fix is pretty easy.
Note: This is for server admins with database access.
Say the persons account name was Bob.
Update account set name='OLDBob' where name='Bob';
Have the person login. To restore their characters and stuff:
Select lsaccount_id from account where name='Bob';
Write that down.
Delete from account where name='Bob';
Update account set lsaccount_id=(WHATEVER ID YOU GOT FROM THE ABOVE SELECT QUERY),name='Bob' where name='OLDBob';
Thats it, it should work fine after that.
_________________
Lethal Encounter
I'm not sure if this will actually help me, but it is possible that I signed up twice since I was having troubles earlier and I tried to fix it over the span of a few days. If anybody could let me know if this is a possible fix or there are any other fixes I would greatly appreciate it. Thanks.