ID:266587
 
I have 10 keys,and I want them to go to a random location of 2,1,4 4,5,6 and 6,5,1 after the person wishes something.How would I do that?Thanks for reading.

-Kappa the Imp
var/list/randomlocation = list(locate(1,2,3),locate(4,5,6),locate(7,8,9))

mob/verb/Goto_randomlocation()
usr.loc = pick(randomloacation)


Edit that to fit your needs.
In response to Nadrew
Thanks!

-Kappa the Imp