From Bohemia Interactive Community
Notes
- 14:00, 7 January 2007 (CET)
- ArmAtec
-
Usage:
Place a chopper called APG with this in its activation [this] exec "Abovesealevel.sqs"
Abovesealevel.sqs:
_craft = _this select 0
_ASL = (getPosASL _craft) select 2
hint format ["Your craft named %1 is at %2 above sea level",_craft, _ASL]
--ArmAtec 14:00, 7 January 2007 (CET)
- Posted on 23 Feb, 2007
- Dr_Eyeball
-
getPosASL obj select 2
might sometimes return the vertical position above sea level, but over land for stacked objects, it returns the vertical position above the object beneath it or at least affected by this offset. The same problem exists for getPos. There was a discussion thread in the BIS forums which suggested the use of the command modelToWorld instead to get around this issue where an absolute vertical position is required. ArmA Ver 1.02.
Bottom Section