mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
93520bdc9d
* add nv and magnification stats * improve ballistics conditions * add ammo count stat * Update addons/arsenal/ACE_Arsenal_Stats.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Update addons/nightvision/ACE_Arsenal_Stats.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * cleanup --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com>
20 lines
358 B
Plaintext
20 lines
358 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: LinkIsGrim
|
|
* Text statement for the magazine capacity stat.
|
|
*
|
|
* Arguments:
|
|
* 0: Stats Array <ARRAY> (not used)
|
|
* 1: Item config path <CONFIG>
|
|
*
|
|
* Return Value:
|
|
* String to display
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["", "_config"];
|
|
TRACE_1("statTextStatement_magCount",_config)
|
|
|
|
getNumber (_config >> "count");
|