armyinf 33 Posted November 3, 2016 So I am trying to setup a spontaneous trigger that can be linked to Radio Alpha command, That would teleport any players standing with a 10x10 meter area. Whats the best way to go about this? The point of the teleport is to be able to as a 3rd party character, if another player steps into the trigger area, teleport them.. but only by radio command. I have it currently set as the following: Type: None Activation: Radio Alpha Repeatable: Checked Server Only: Unchecked condition: Player in thislist on ACT: Player setposATL (getpos a1); Its just not working, when I first tested with con: "this" it would teleport me no matter if I was inside the trigger area Share this post Link to post Share on other sites
M1ke_SK 230 Posted November 3, 2016 Try condition: vehicle player in thisList Share this post Link to post Share on other sites
armyinf 33 Posted November 3, 2016 Try condition: vehicle player in thisList Didn't work :/ Share this post Link to post Share on other sites
killzone_kid 1331 Posted November 3, 2016 condition: this onActivation: {if (_x distance thisTrigger <= 10) then {_x setVehiclePosition [a1, [], 0, "NONE"]}} forEach allPlayers; Share this post Link to post Share on other sites
armyinf 33 Posted November 3, 2016 worked thanks! condition: this onActivation: {if (_x distance thisTrigger <= 10) then {_x setVehiclePosition [a1, [], 0, "NONE"]}} forEach allPlayers; Share this post Link to post Share on other sites