I'm trying to get the Ship to spawn with the code below, but no matter how high I change the Z-Axis number in the coordinates, the ship will always spawn on the floor of the ocean.
_LHD1_POS = [6710,2000,1634];
_MRK_LHD1 = createMarker ["MRK_LHD1", _LHD1_POS];
_MRK_LHD1 setMarkerShape "ICON";
_MRK_LHD1 setMarkerType "mil_dot";
_MRK_LHD1 setMarkerText "LHD1";
_LHD1_VEH = "ATLAS_B_LHD_helper" createVehicle _LHD1_POS;
The ship spawns fine, and everything works. it's just always spawning on the ocean floor, even if I fly up to the sky and use "position player" as coords. Is there currently a way to do this?
I'm fairly new to SQF programming, so I don't know if I'm missing something.