ACE3/addons/dragging/functions/fnc_canRun_carry.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

21 lines
390 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: LinkIsGrim
* Check if weight can be carried while running
*
* Arguments:
* 0: Weight <NUMBER>
*
* Return Value:
* Can the weight be carried while running? <BOOL>
*
* Example:
* [500] call ace_dragging_fnc_canRun_carry
*
* Public: No
*/
params ["_weight"];
GVAR(allowRunWithLightweight) && {_weight <= GVAR(maxWeightCarryRun)}