28 lines
769 B
Plaintext
28 lines
769 B
Plaintext
/*
|
|
File: fn_getMobileRespawns.sqf
|
|
Author: KP Liberation Dev Team - https://github.com/KillahPotatoes
|
|
Date: 2019-11-25
|
|
Last Update: 2019-12-05
|
|
License: MIT License - http://www.opensource.org/licenses/MIT
|
|
|
|
Description:
|
|
Gets all mobile respawn vehicles sorted by their positions X value.
|
|
|
|
Parameter(s):
|
|
NONE
|
|
|
|
Returns:
|
|
Mobile respawns [ARRAY]
|
|
*/
|
|
|
|
private _respawn_trucks = vehicles select {
|
|
(typeOf _x) in [Respawn_truck_typename, huron_typename] &&
|
|
{alive _x} &&
|
|
{_x distance2d startbase > 500} &&
|
|
{abs (speed _x) < 5} &&
|
|
{(isTouchingGround _x || {5 > ((getPos _x) select 2)})} &&
|
|
{!surfaceIsWater (getPos _x)}
|
|
};
|
|
|
|
[_respawn_trucks, [], {(getPos _x) select 0}, 'ASCEND'] call BIS_fnc_sortBy
|