mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
589 B
Plaintext
29 lines
589 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Returns the weight (from the loadAbs command) in lbs/kg (based on user option)
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit (usually the player) <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* The return value <NUMBER>
|
|
*
|
|
* Example:
|
|
* [player] call ace_movement_fnc_getWeight
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
private _weight = loadAbs _unit * 0.1;
|
|
|
|
if (GVAR(useImperial)) then {
|
|
_weight = format ["%1lb", (round (_weight * 100)) / 100];
|
|
} else {
|
|
_weight = format ["%1kg", (round (_weight * FACTOR_POUND_TO_KILOGRAMM * 100)) / 100];
|
|
};
|
|
|
|
_weight
|