English Solved Getting client errors when trying to disable side chat channel

  • Auteur de la discussion Auteur de la discussion TenTraX
  • Date de début Date de début
Solution
Hello, you cannot put the disableChannels in your core/init.sqf, you can remove these lines :
Code:
disableChannels[] = {
    {0, true, true},  //--- Global 
    {1, true, true}, //--- Seitenkanal 
    {2, true, true},  //--- Befehlskanal 
    {3, false, false},  //--- Gruppenkanal
    {4, false, false},  //--- Fahrzeugkanal
    {5, false, false}, //--- Direktkanal 
    {6, false, false},  //--- Polizei-Sidechat
    {7, false, true},  //---  Zivilisten-Sidechat
    {8, false, false}  //--- AMR-Sidechat
};

And put them in your description.ext instead of :
Code:
disableChannels[] = {{0,true,true},{1,true,true},{2,true,true}};    // Disabled text and voice for global, side, and command channels. Syntax: disableChannels[]...
--- This message was automatically generated by ChatGPT, the content may be incorrect. Please read the message with precautions! ---

To deactivate the side chat channel in Arma 3, you need to use the disableChannel command. However, client errors can occur if you haven't used the command correctly. Please share the code snippet you're using so I can help you identify and resolve the issue.

--- To continue the discussion with ChatGPT, click "Reply" at the bottom right of this message. Otherwise, wait for someone to reply. ---
 
Hello, you cannot put the disableChannels in your core/init.sqf, you can remove these lines :
Code:
disableChannels[] = {
    {0, true, true},  //--- Global 
    {1, true, true}, //--- Seitenkanal 
    {2, true, true},  //--- Befehlskanal 
    {3, false, false},  //--- Gruppenkanal
    {4, false, false},  //--- Fahrzeugkanal
    {5, false, false}, //--- Direktkanal 
    {6, false, false},  //--- Polizei-Sidechat
    {7, false, true},  //---  Zivilisten-Sidechat
    {8, false, false}  //--- AMR-Sidechat
};

And put them in your description.ext instead of :
Code:
disableChannels[] = {{0,true,true},{1,true,true},{2,true,true}};    // Disabled text and voice for global, side, and command channels. Syntax: disableChannels[] = {{channelID<number>, disableChat<bool>, disableVoice<bool>}};
 
Solution