```
disableChannels[] = {
{
0, // channel ID
true, // disable text chat
true // disable voice chat
},
{
1, // channel ID
false, // disable text chat
true // disable voice chat
},
{
2, // channel ID
true, // disable text chat
true // disable voice chat
},
{
3, // channel ID
true, // disable text chat
true // disable voice chat
},
{
4, // channel ID
false, // disable text chat
true // disable voice chat
},
{
5, // channel ID
false, // disable text chat
false // disable voice chat
},
{
6, // channel ID
false, // disable text chat
false // disable voice chat
},
};
```
and/or
```
if (hasInterface) then {
waitUntil {!isNull (findDisplay 46)};
0 enableChannel [false,false]; // global
1 enableChannel [true,false]; // side
2 enableChannel [false,false]; // command
3 enableChannel [true,false]; // group
4 enableChannel [true,false]; // vehicle
5 enableChannel [true,false]; // direct
6 enableChannel [false,false]; // system
setCurrentChannel 5;
};
```
makes no difference.