Epoch/Sources/epoch_code/compile/both/EPOCH_isAny.sqf
2015-09-14 15:55:36 -05:00

6 lines
136 B
Plaintext

private ["_item","_return"];
_item = _this select 0;
_type = _this select 1;
_return = str(configFile >> _type >> _item) != "";
_return