johnflenaly 1 Posted March 13, 2013 As far as I understand it, respawns as well as jip should show up at the respawn marker on the map. I have this in the description.ext respawn = 3; respawnDelay = 10; and a marker named respawn_east on the map. The player is opfor. When I test this mission out on a live server, the respawns are appearing at the marker, however JIPs are not. They seem to be appearing were their unit is initial placed on the map in the editor. Share this post Link to post Share on other sites
Beerkan 71 Posted March 13, 2013 Need to see your init.sqf for your mission. Share this post Link to post Share on other sites
sxp2high 23 Posted March 14, 2013 Units will ALWAYS start where they are initially placed. Joining the server is not considered respawn. You would have to do that manually. Example: If someone joins after 1 minute into the mission, he will start at the respawn marker: if (time > 60) then { player setPosATL (getMarkerPos "respawn_east"); }; Share this post Link to post Share on other sites