Randomized teleport

KaydemonLP

L5: Dapper Member
Nov 17, 2015
204
63
Any way to make players be randomly teleported to some predetermed points.
 

henke37

aa
Sep 23, 2011
2,075
515
Pretty much all ways to teleport players pick a destination at random if there are multiple ones with the same name.
 

KaydemonLP

L5: Dapper Member
Nov 17, 2015
204
63
Pretty much all ways to teleport players pick a destination at random if there are multiple ones with the same name.
I did try that, but all players just got teleported to a sinle one
 
Mar 23, 2013
1,013
347
Make a logic_case and give it these outputs:

OnCase01 - <trigger_teleport's name> - AddOutput - message <destination 1 name>
OnCase02 - <trigger_teleport's name> - AddOutput - message <destination 2 name>
OnCase03 - <trigger_teleport's name> - AddOutput - message <destination 3 name>
ect

Now give the trigger teleport the output:
OnStartTouch - <Logic_case's name> - PickRandom (Or PickRandomShuffle if you preffer)
 

KaydemonLP

L5: Dapper Member
Nov 17, 2015
204
63
Make a logic_case and give it these outputs:

OnCase01 - <trigger_teleport's name> - AddOutput - message <destination 1 name>
OnCase02 - <trigger_teleport's name> - AddOutput - message <destination 2 name>
OnCase03 - <trigger_teleport's name> - AddOutput - message <destination 3 name>
ect

Now give the trigger teleport the output:
OnStartTouch - <Logic_case's name> - PickRandom (Or PickRandomShuffle if you preffer)
Thanks!