View Single Post
  #5  
Old 10-05-2003, 03:36 PM
krich
Hill Giant
 
Join Date: May 2003
Location: The Great Northwest
Posts: 150
Default

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]
Reply With Quote