mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
719 B
Plaintext
32 lines
719 B
Plaintext
|
/*
|
||
|
* Author: commy2
|
||
|
* Add (negative numbers to subtract) a virtual mass to a units container.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The Unit <OBJECT>
|
||
|
* 1: The Container <OBEJCT>
|
||
|
* 2: The Virtual Load <NUMBER>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* Success? <BOOLEAN>
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
params [["_unit", objNull, [objNull]], ["_container", objNull, [objNull]], ["_virtualLoadToAdd", 0, [0]]];
|
||
|
|
||
|
if !(_container in [
|
||
|
uniformContainer _unit,
|
||
|
vestContainer _unit,
|
||
|
backpackContainer _unit
|
||
|
]) exitWith {false};
|
||
|
|
||
|
private _virtualLoad = (_container getVariable [QGVAR(vLoad), 0]) + _virtualLoadToAdd;
|
||
|
_container setVariable [QGVAR(vLoad), _virtualLoad];
|
||
|
|
||
|
// update
|
||
|
_unit call FUNC(handleVirtualMass);
|
||
|
|
||
|
true
|