added altitude to extracted info for the maker

This commit is contained in:
Valmo Trindade
2024-08-20 05:55:40 -03:00
parent a8503d1c26
commit 19cd267c10
2 changed files with 3 additions and 2 deletions

View File

@@ -20,4 +20,4 @@ _LatitudeDifference = _MapMaxLatitude - _MapMinLatitude;
_RealLongitude = (_playerLongitude / _playerMaxLongitude) * _LongitudeDifference + _MapMinLongitude;
_RealLatitude = (_playerLatitude / _playerMaxLatitude) * _LatitudeDifference + _MapMinLatitude;
[_RealLongitude, _RealLatitude]
[_RealLongitude, _RealLatitude, _playerPosition select 2]