Sarge-AI/scripts/UPSMON/COMMON/MP/fnc/UPSMON_fnc_setVehicleVarName.sqf
Teh Dango 3ac749d64b 2.1.0
This is the latest stable version of Sarge AI for Arma 3: Exile.
2016-02-19 21:49:51 -05:00

23 lines
680 B
Plaintext

/****************************************************************
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]; };