This uses two different table's, customavatars and user, you would need to empty the customavatar table, then mass update the user table with the proper value for avatarid column
UPDATE user SET avatarid ='X';
avatarid will be based off what avatars you have in the "avatar" table, get the avatarid and replace X in the SQL query above.
MAKE SURE YOU BACKUP THE DB BEFORE PLAYING!
|