mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
733 B
Plaintext
34 lines
733 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Alganthe
|
|
* Rate of fire text statement.
|
|
*
|
|
* Arguments:
|
|
* 0: stat (STRING)
|
|
* 1: item config path (CONFIG)
|
|
* 2: Args for configExtreme
|
|
* 2.1: Stat limits (ARRAY of BOOL)
|
|
* 2.2: Evaluate as a logarithmic number (BOOL)
|
|
*
|
|
* Return Value:
|
|
* String
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_stat", "_config", "_args"];
|
|
_args params ["_statMinMax", "_configExtremeBool"];
|
|
|
|
private _fireModes = getArray (_config >> "modes");
|
|
private _fireRate = [];
|
|
|
|
{
|
|
_fireRate pushBackUnique (getNumber (_config >> _x >> "reloadTime"));
|
|
} foreach _fireModes;
|
|
|
|
_fireRate sort true;
|
|
_fireRate = _fireRate param [0, 0];
|
|
|
|
if (_fireRate == 0) exitWith {"PEWPEWPEW"};
|
|
format ["%1 rpm", round (60 / _fireRate)]
|