mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
24 lines
487 B
Plaintext
24 lines
487 B
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Adds a duty factor.
|
|
*
|
|
* Arguments:
|
|
* 0: Factor ID <STRING>
|
|
* 1: Factor <NUMBER> or <CODE>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["ID", 5] call ace_advanced_fatigue_fnc_addDutyFactor
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
params [["_id", "", [""]], ["_factor", 1, [0, {}]]];
|
|
if (_id == "" || {_factor isEqualTo 1}) exitWith {};
|
|
|
|
GVAR(dutyList) params ["_idList", "_factorList"];
|
|
_idList pushBack _id;
|
|
_factorList pushBack _factor,
|