Also, there is a crash bug during character creation that is related to invalid starting items in the database.
Check your database, table starting_items for a row where itemid==0. This will crash it.
To see if you have this problem, run this on the MySQL command line:
Code:
select * from starting_items where itemid=0;
If it returns anything other than Empty set, run this command to fix it:
Code:
delete from starting_items where itemid=0;
Good luck.
Regards,
krich[/code]