mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
10 lines
343 B
Plaintext
10 lines
343 B
Plaintext
private ["_femaleVariant","_vest","_class","_config","_woman","_maleVariant"];
|
|
_class = _this select 2;
|
|
//Radio Check
|
|
if (configName(inheritsFrom(configFile >> "CfgWeapons" >> _class)) == "ItemRadio") then {
|
|
if !(_class in(assignedItems player)) then {
|
|
//diag_log "UnEQUPPED RADIO";
|
|
|
|
EPOCH_equippedItem_PVS = [_class,false,player];
|
|
};
|
|
}; |