ID:168384
 
Teleport ||ALL|| players to the same spot, but with a random proc. As in:

        for(var/mob/M in world)
M.loc=locate(1,12, rand(1,2))


This teleports all of the players to a random Z level (cheers Crisp), but they all need to go to the SAME Z level. So if 1 player goes Z level 1, ALL of them need to...

Thanks in advance
var/Z=rand(1,12)
for(var/mob/M in world)
M.loc=locate(1,12,Z)


O-matic
In response to O-matic
If I had your adress I'd kiss you.

...

Scrap that! Thanks O-Matic!