mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
12 lines
285 B
Plaintext
12 lines
285 B
Plaintext
/**
|
|
* fn_beingCarried.sqf
|
|
* @Descr: Check if object is being carried
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: [object OBJECT]
|
|
* @Return: BOOL True if object is being carried
|
|
* @PublicAPI: true
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
!(isNull ([_this select 0] call FUNC(getCarriedObj))); |