ACE3/addons/nightvision/functions/fnc_statTextStatement_NVGeneration.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

25 lines
490 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: LinkIsGrim
* Text statement for the NV Generation stat.
*
* Arguments:
* 0: Not used
* 1: Item config path <CONFIG>
*
* Return Value:
* Stat Text <STRING>
*
* Public: No
*/
params ["", "_config"];
TRACE_1("statTextStatement_nvGeneration",_config);
private _gen = 3; // Default
if (isNumber (_config >> QGVAR(generation))) then {
_gen = getNumber (_config >> QGVAR(generation));
};
format [localize LSTRING(statGen), _gen];