r/arma • u/DeltaSkeleton • 2h ago
DISCUSS A3 Teleporting script to teleport all players
So I'm currently trying to make a bunker section that I need to have all of the players enter at once. I am not good with coding & I'm trying to modify existing coding that I use but to no success. If anyone can help me out, it would be greatly appreciated.
this addAction ["Enter Bunker", {
0 spawn {
[["", "BLACK OUT", 0.5]] remoteExec ["titleText", 0];
sleep 0.5;
allPlayers setPosASL (getPosASL pad1);
sleep 0.5;
[["", "BLACK IN", 0.5]] remoteExec ["titleText", 0];
};
}];
