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
448 B
Plaintext
24 lines
448 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Check if given unit has a magazine of given classname
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Magazine Classname <STRING>
|
|
*
|
|
* Return Value:
|
|
* has Magazine <BOOL>
|
|
*
|
|
* Example:
|
|
* [bob, "magazine"] call ace_common_fnc_hasMagazine
|
|
*
|
|
* Public: yes
|
|
*
|
|
* Note: Case sensitive
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params [["_unit", objNull, [objNull]], ["_magazine", "", [""]]];
|
|
|
|
_magazine in magazines _unit // return
|