ACE3/addons/interaction/functions/fnc_canPush.sqf
PabstMirror e8693c8db9
Various - Use configOf command for faster lookup (#8100)
* configOf

* replace some use of CBA_fnc_getObjectConfig
2021-02-18 12:58:08 -06:00

23 lines
411 B
Plaintext

#include "script_component.hpp"
/*
* Author: Jonpas
* Checks if the boat can be pushed.
*
* Arguments:
* 0: Target <OBJECT>
*
* Return Value:
* Can Push <BOOL>
*
* Example:
* [target] call ace_interaction_fnc_canPush
*
* Public: No
*/
params ["_target"];
alive _target &&
{getMass _target <= 2600 || getNumber (configOf _target >> QGVAR(canPush)) == 1} &&
{vectorMagnitude velocity _target < 3}