ACE3/addons/sitting/functions/fnc_canStand.sqf

22 lines
351 B
Plaintext
Raw Normal View History

2015-06-07 20:00:43 +00:00
/*
* 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
*/
#include "script_component.hpp"
PARAMS_1(_player);
2015-06-07 20:00:43 +00:00
// If sitting
(_player getVariable [QGVAR(sitting),false])