Jump to content
TGxBiggy

Force group channel except for Squad Leaders

Recommended Posts

Hi, was a pub Zeus and someone ran a Script where only SLs can use side channels and it disables global chat. Anyone have a link to it?

Share this post


Link to post
Share on other sites

Use enableChannel command

something like:

in initPlayerLocal.sqf:
 

{_x enableChannel false} count [0,1,2,3,4,5];    // first, disable all channels chat/VoN
if (leader player == player) then {
  {_x enableChannel [true,False]} count [0,1];
  {_x enableChannel [false,true]} count [2,3,4,5];
} else {
  {_x enableChannel [false,true]} count [3,4,5];
};

 

That's for the principle.

 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×