15 lines
401 B
Plaintext
15 lines
401 B
Plaintext
#include "\life_server\script_macros.hpp"
|
|
/*
|
|
File: fn_getID.sqf
|
|
Author: Bryan "Tonic" Boardwine
|
|
|
|
Description:
|
|
Used for the admin menu returns the player ID for in-game bans/kicks.
|
|
https://community.bistudio.com/wiki/Multiplayer_Server_Commands
|
|
*/
|
|
private ["_id","_ret"];
|
|
_id = owner (_this select 0);
|
|
_ret = owner (_this select 1);
|
|
|
|
[_id] remoteExecCall ["life_fnc_adminID",_ret];
|