ID:165250
 
I am making a role play game were a game master selects from a list of three choices from a list , but I want it after the game master selects his role play all users that login go to a different login screen.
Well how are you doing your login screen? If it is part of the map, simply change their loc to the new login screen...
In response to Bobthehobo
mob/Login()
usr.loc = locate(/turf/login_screen)



I want it to chnae the locate for every one who logs in but I don't know how.
In response to Miran94
You'll need to store a reference to which area new users should go to. You could use a global variable, or a variable attached to a global "game master" object, or something similar. For this example, I'll use the global variable. When the game master chooses which area new people should go to, save that area in the variable, and then direct new people there:
var/login_start = /turf/start_places/grey
game_master/verb/choose_area(which as anything in list("Red","Green","Blue"))
switch(which)
if("Red" ) which = /turf/start_places/red
if("Green") which = /turf/start_places/green
if("Blue" ) which = /turf/start_places/blue
login_start = which
mob/Login()
loc = locate(login_start)