mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
449 B
Plaintext
22 lines
449 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Check if the unit is in a vehicle and turned out.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit, not the vehicle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Is the unit turned out or not? Will return false if there is no option to turn out in the first place. <BOOL>
|
|
*
|
|
* Public: Yes
|
|
*
|
|
* Deprecated
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
ACE_DEPRECATED("ace_common_fnc_isTurnedOut","3.5.0","isTurnedOut");
|
|
|
|
params ["_unit"];
|
|
|
|
isTurnedOut _unit // return
|