mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
407 B
Plaintext
25 lines
407 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Get the muzzles of a weapon.
|
|
*
|
|
* Arguments:
|
|
* 0: Weapon <STRING>
|
|
*
|
|
* Return Value:
|
|
* All weapon muzzles <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_weapon"];
|
|
|
|
private "_muzzles";
|
|
_muzzles = getArray (configFile >> "CfgWeapons" >> _weapon >> "muzzles");
|
|
|
|
if ("this" in _muzzles) then {
|
|
_muzzles set [_muzzles find "this", _weapon];
|
|
};
|
|
|
|
_muzzles
|