mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
30 lines
710 B
Plaintext
30 lines
710 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Alganthe
|
|
* Text statement for the mass stat.
|
|
*
|
|
* Arguments:
|
|
* 0: Not used
|
|
* 1: Item config path <CONFIG>
|
|
*
|
|
* Return Value:
|
|
* Stat Text <STRING>
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["", "_config"];
|
|
TRACE_1("statTextStatement_mass",_config);
|
|
|
|
private _mass = getNumber (_config >> "mass");
|
|
|
|
if (_mass == 0 && {isClass (_config >> "itemInfo")}) then {
|
|
_mass = getNumber (_config >> "itemInfo" >> "mass");
|
|
};
|
|
|
|
if (_mass == 0 && {isClass (_config >> "WeaponSlotsInfo")}) then {
|
|
_mass = getNumber (_config >> "WeaponSlotsInfo" >> "mass");
|
|
};
|
|
|
|
format ["%1kg (%2lb)", ((_mass * 0.1 * (1 / 2.2046) * 100) / 100) toFixed 2, ((_mass * 0.1 * 100) / 100) toFixed 2]
|