ACE3/addons/sitting/functions/fnc_canStand.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

22 lines
356 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Jonpas
* Check if the player can stand up (is in sitting position).
*
* Arguments:
* Player <OBJECT>
*
* Return Value:
* Can Stand Up <BOOL>
*
* Example:
* player call ace_sitting_fnc_canStand
*
* Public: No
*/
params ["_player"];
// Sitting
!isNil {_player getVariable QGVAR(sittingStatus)}