ID:270278
 
how do i make more than 1 login screen and make u loginto them randomly ?? would i make the xyz random??
plz hlep
Look up pick()
mob/Login()
..()
var/x=pick(1,99)
var/y=pick(1,99)
src.loc=locate(x,y,1)
In response to Mysame
Or if you want them on different Z levels, because that would require a large map.


mob/Login()
..()
var/ts = pick(1,2)
src.loc = locate(1,1,ts)