Yeah, I had just commented out the eqemulator.net host loginserver while working on the private login. I've uncommented it now, but it didn't have any effect/interfere with the issues I was having. Appreciate the advice though
As far as the character_bind issue:
Code:
Here's my table
# name datatype length / set
1 id INT (11)
2 slot INT (4)
3 zone_id SMALLINT (11)
4 instance_id MEDIUMINT (11)
5 x FLOAT
6 y FLOAT
7 z FLOAT
8 heading FLOAT
Could the issue be that the game's syntax said it was trying to do ID, then zone_id and the table up above has slot at (2), and not last, like the error below produced??
Code:
REPLACE INTO `character_bind` (id, zone_id, instance_id, x, y, z, heading, slot)
btw, I used Akka's new server install (all in one thing), so everything is stock... i'm guessing other's probably have this error too
If this is the problem, what's the fix?? simply moving my table around and putting zoneid at (2) and slot at 8 ?
Thanks in advance