ACE3/addons/common/functions/fnc_applyForceWalkStatus.sqf
2015-09-18 09:38:19 +02:00

24 lines
455 B
Plaintext

/*
* Author: Pabst Mirror
* Applys the forceWalk status of an unit. Called from Extended_InitPost_EventHandlers.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [ACE_Player] call FUNC(applyForceWalkStatus)
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
private "_forceWalkNumber";
_forceWalkNumber = _unit getVariable ["ACE_forceWalkStatusNumber", 0];
_unit forceWalk (_forceWalkNumber > 0);