mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
581 B
Plaintext
33 lines
581 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Get the available firing modes of a weapon. Will ignore the AI helper modes.
|
|
*
|
|
* Arguments:
|
|
* 0: Weapon <STRING>
|
|
*
|
|
* Return Value:
|
|
* Firing Modes <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params [["_weapon", "", [""]]];
|
|
|
|
private _config = configFile >> "CfgWeapons" >> _weapon;
|
|
|
|
private _modes = [];
|
|
|
|
{
|
|
if (getNumber (_config >> _x >> "showToPlayer") == 1) then {
|
|
_modes pushBack _x;
|
|
};
|
|
|
|
if (_x == "this") then {
|
|
_modes pushBack _weapon;
|
|
};
|
|
false
|
|
} count getArray (_config >> "modes");
|
|
|
|
_modes
|