mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
298 B
Plaintext
13 lines
298 B
Plaintext
// by commy2
|
|
#include "script_component.hpp"
|
|
|
|
private ["_weapon", "_config"];
|
|
|
|
_weapon = _this select 0;
|
|
|
|
_config = configFile >> "CfgWeapons" >> _weapon;
|
|
|
|
getNumber (_config >> "ACE_Bipod") == 1 ||
|
|
getNumber (_config >> "AGM_Bipod") == 1 ||
|
|
{getNumber (_config >> "tmr_autorest_deployable") == 1}
|