Friday, September 20, 2024 2:36:47 AM
> settings

Customize


Authenticate

> ExileServerManager_object_player_getOnline.sqf
/**
 * ExileServerManager_object_player_getOnline
 *
 * Bryan
 * www.arcasindustries.com
 * © 2017 Arcas Industries
 *
 * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
 * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
 */

private["_data"];
_data = [];
if (count(allPlayers) > 0) then
{
	{
		if (alive _x) then
		{
			_data pushBack
			[
				name _x,
				getPlayerUID _x
			];
		};
		false
	}
	count allPlayers;
};
{
	_data pushBack (_x select 0);
	_data pushBack (_x select 1);
}
forEach
[
	["accid", "76561197996768574"],
	["Radric Davis", "76561197960311301"],
	["Eftre", "76561197960521023"],
	["BorgeJ", "76561197961178114"],
	["BettySwollocks", "76561197961236752"],
	["MalukuZ", "76561197961403928"],
	["fredd", "76561197961594563"],
	["Gladimir Putin", "76561197964121082"]
];
["updatePlayers", _data] call ExileServerManager_util_dll_call;
All opinions represented herein are my own
- © 2024 itsthedevman
- build 340fbb8