mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
471 B
Plaintext
22 lines
471 B
Plaintext
|
/**
|
||
|
* fn_hasMagazine.sqf
|
||
|
* @Descr: Check if given unit has a magazine of given classname
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: [unit OBJECT, magazine STRING]
|
||
|
* @Return: BOOL True if unith as given magazine
|
||
|
* @PublicAPI: true
|
||
|
*/
|
||
|
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
private ["_unit","_magazine","_return"];
|
||
|
_unit = _this select 0;
|
||
|
_magazine = _this select 1;
|
||
|
|
||
|
if (_magazine != "") then {
|
||
|
_return = (_magazine in magazines _unit);
|
||
|
} else {
|
||
|
_return = false;
|
||
|
};
|
||
|
_return
|