fuci 10 Posted June 17, 2013 Hello everyone I hope someone can help me with this, is there any script to select the elevation on a respawn marker? i made a simple respawn system with the Marker for west and east thanks in advance Share this post Link to post Share on other sites
Magirot 14 Posted June 18, 2013 (edited) I used onPlayerRespawn.sqf and setPos to set the height. No idea if there is an easier method. Create a file called onPlayerRespawn.sqf in the mission directory and add something like this as its contents: private ["_unit", "_axisx", "_axisy"]; _unit = _this select 0; _axisx = getPos _unit select 0; _axisy = getPos _unit select 1; switch (side _unit) do { case west: { _unit setPos [_axisx, _axisy, 2] }; case east: { _unit setPos [_axisx, _axisy, -3] }; }; Change the last digit to adjust the height. More info on respawn stuff Edited June 18, 2013 by Magirot Typo Share this post Link to post Share on other sites
fuci 10 Posted June 19, 2013 Yeay it works =D A big big thank you for that, i searched everywhere for this but couldnt find it! Share this post Link to post Share on other sites