Setting a homeroom for new users

Mar 20, 2014
166
10
This is simple to do. go to localhost/phpmyadmin , login, open the database, then go to the users tab.
go to structure, then find home_room

Go into the client, go into the room you want to be homeroom, then press room info. down the bottom it gives a link with a link that would take you straight to that room.
example :
where it says /room/8 is where you want to look at. 8 would be the id of the room.
so go back to the database, and in the home_room line, click the change button. Now change the ''Default'' to the room id (mine would be 8).
then click away and it will save. now clear cache, restart the emu and reload client, and you will spawn there! (unless youve already set a spawn point for yourself).
 

Zymf

 
Aug 19, 2012
868
166
Or run this as a query...
For all users once they register:
Code:
ALTER TABLE `users`
MODIFY COLUMN `home_room`  int(10) UNSIGNED NOT NULL DEFAULT 'roomid';
For users already registered:
Code:
UPDATE users SET home_room = 'room_id'
 

Nerfed

Godzilla
Apr 9, 2013
159
15
Thanks, great tutorial, I'm sure this would help many people.
To make it better and more noob friendly, you should make your steps neater and possibly with images. Right now it's a jumble of sentences only separated by commas and full stops.
 

Users who are viewing this thread

Top