need help-Charicters naked.

Newbie Spellweaver
Joined
Feb 7, 2007
Messages
87
Reaction score
0
I have used all the SQL update's i have looket through every forum i know of.I can not find a fix for this i have used.

alter table playeritems add column randomsuffix int(30) default 0 after randomprop;

Still my toon's are naked.So should i go back to older DB's and core's or is there a fix that i just cant seem to find?
 
alter table playeritems drop column guid;
alter table playeritems add column guid bigint(10) NOT NULL auto_increment primary key after ownerguid;
try this.... worked for me when i had this problem
 
Back