if your not using Ubercms Just Skip To the database Part
Find this in Class.users.php
PHP:
dbquery("INSERT INTO users (username,password,mail,auth_ticket,rank,look,gend er,motto,credits,activity_points,last_online,accou nt_created,ip_reg) VALUES ('" . $username . "','" . $passwordHash ...
Run All Theses in your database
ALTER TABLE `users` ADD COLUMN `hide_inroom` enum('0','1') NOT NULL DEFAULT '0';
ALTER TABLE `users` ADD COLUMN `hide_room` enum('0','1') NOT NULL DEFAULT '0';
ALTER TABLE `users` ADD COLUMN `hide_online` enum('0','1') NOT NULL DEFAULT '0';
ALTER TABLE...