Sarge-AI/sarge/UPSMON/COMMON/MP/fnc/UPSMON_fnc_setVehicleVarName.sqf

23 lines
680 B
Plaintext
Raw Normal View History

2016-08-19 02:58:49 +00:00
/****************************************************************
File: UPSMON_fnc_setVehicleVarName.sqf
Author: Ollem
Description:
Replacement of "setvehicleinit" command.
Parameter(s):
<--- netid object
<--- unit name
Returns:
Nothing
****************************************************************/
private ["_netID","_unit","_unitname"];
_netID = _this select 0;
_unit = objectFromNetID _netID;
_unitname = _this select 1;
_unit setVehicleVarName _unitname;
_unit call compile format ["%1=_This; PublicVariable ""%1""",_unitname];
if (UPSMON_Debug>0) then { diag_log format ["UPSMON 'UPSMON_fnc_setVehicleVarName': %1=_This; PublicVariable ""%1""",_unitname]; };