Quote: "I have five teleporters, 1 teleporter teleports you to teleporters 2,3 and four. So you step on Tele 1 and it teleports you to location 2, you do what you need and then step back onto tele 2 and you get sent back to tele 1, then, you step back on tele 1 and you get teleported to location 4 say and so on randomly.
Is this possible?"
If you use Mystic-Mod it is. You'd just have to create a variable make it have a random value, and teleport the player depending on what value it is. Something like this:
:state=0:makeglobalvar=teleportVal int,rndglobalvar=teleportVal 4,state=1
:state=1:rundecal=2,coloff
:state=1,plrhigher=10,plrdistwithin=50:state=2
:state=2,globalvarequal=teleportVal 0:plrsound=audiobank\scifi\scenery\lifts\teleport.wav,plrmoveto=Teleporter1,state=3
:state=2,globalvarequal=teleportVal 1:plrsound=audiobank\scifi\scenery\lifts\teleport.wav,plrmoveto=Teleporter2,state=3
:state=2,globalvarequal=teleportVal 2:plrsound=audiobank\scifi\scenery\lifts\teleport.wav,plrmoveto=Teleporter3,state=3
:state=2,globalvarequal=teleportVal 3:plrsound=audiobank\scifi\scenery\lifts\teleport.wav,plrmoveto=Teleporter4,state=3
:state=2,globalvarequal=teleportVal 4:plrsound=audiobank\scifi\scenery\lifts\teleport.wav,plrmoveto=Teleporter5,state=3
:state=3,plrdistfurther=55:state=1
And just make sure that you've got your teleport destinations named correctly.
reauirentem