Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Channel Enabling/Disabling DAYZ STANDALONE

Status
Not open for further replies.
Skilled Illusionist
Joined
Jun 19, 2014
Messages
315
Reaction score
71
Items you will need:

  • PboView (or any other type of pbo manager)
  • Notepad/Notepad ++
  • Mission.pbo
Once you have your mission.pbo you will need to unpack it with your pbo manager of choice.

The next step will be to open the folder that was extracted you will see 3 files, the one you will want to open in notepad/notepad ++ is description.ext.

Once you have opened the file you will need to look for this line:Code (Text):
disableChannels[]={0,1,2,6};

Replace that line with:Code (Text):
disableChannels[]={0,2,6};

Now this will disable Global Chat, Command Chat, and System Chat. This leaves Side, Group, Vehicle, and Direct chat channels open for players to use.

This is a list of each channel type and the number associated with it if you want to enable/disable one.
Code (Text):
0 = Global
1 = Side
2 = Command
3 = Group
4 = Vehicle
5 = Direct
6 = System

After you have replaced that simply save the file and repack the folder up with the pbo manager and upload it to your server and restart it.
 
Newbie Spellweaver
Joined
May 17, 2014
Messages
53
Reaction score
2
Why repack !!! leave the files extracted in MPmissions , edit on the fly then
And it only gives u more work todo if repack to .pbo
 
Skilled Illusionist
Joined
Jun 19, 2014
Messages
315
Reaction score
71
Why repack !!! leave the files extracted in MPmissions , edit on the fly then
And it only gives u more work todo if repack to .pbo

yeah you know i was sherching for how to enable global chat for a week no one answeer in help and now you come and say blablabla yeah gooooood i dont know why ppl just hide ther script its a fk game so we are here to share
 
Newbie Spellweaver
Joined
May 17, 2014
Messages
53
Reaction score
2
Dude if you read u would understand i was giving a hint why repack missionfiles
 
Newbie Spellweaver
Joined
Jan 12, 2014
Messages
5
Reaction score
0
as far as i know you can only enable vehicle chat this way (did it a week ago, wasn't working/vehicle chat came up, tried your version, still not working/vehicle chat came up)
have u tested this? it surely worked for the mod but not for standalone
 
Newbie Spellweaver
Joined
May 17, 2014
Messages
62
Reaction score
9
Activating global chat standard means impossible!

PHP:
if (channel==CCGlobal)  
{    // global channel is always valid for the admin   
      if (GetNetworkManager().IsServer() || GetNetworkManager().IsGameMaster()) return true;   
      else return false;
      // global channel enabled for admins only in DayZ  
}

Want to activate - Change the source and compile exe.
 
Status
Not open for further replies.
Back
Top