[TUT] How to set homeroom [SIMPLE]

keiller

Mr Tutorial Man
Jun 9, 2012
492
108
Tutorial+Six

Hey,

This is a really simple tutorial on how to set the home room, so all users will go to the room set when logged on. Go into your PHPMyAdmin/Navicat and run the following query:

PHP:
ALTER TABLE `users` CHANGE `home_room` `home_room` INT( 10 ) UNSIGNED NOT NULL DEFAULT 'ROOMID'

If this code doesn't work try this:

PHP:
UPDATE users SET home_room = 'ROOMID'

Where it says ROOMID obviously put the room ID.. Well, just a simple tutorial for noobs ;)
 

Users who are viewing this thread

Top