You can disable communication @ OX-Map by editing root > uichat.py.
At first, add "import background" to the other imports @ the first lines of the script..
Then search "def __SendChatPacket(self"
and add the following, the line below.
PHP Code:
[TAB][TAB]if background.GetCurrentMapName() == "metin2_map_oxevent":
[TAB][TAB][TAB]return
Not sure if this work.
If not - you have to change "metin2_map_oxevent" to "season1/metin2_map_oxevent".
Also you can permit GameMasters with [ ] in their name to use the chat.. to do this modify the if statement as following..
PHP Code:
[TAB][TAB]if background.GetCurrentMapName() == "metin2_map_oxevent" and str(player.GetName())[0] != "[":
Finally replace [TAB] with real tab characters..
hope this will help you.
kind regards.
edit;ps;
uhm.. i see, it could be possible, that you have to add the code above twice..
search for "def __SendTalkingChatPacket(self" and add it there the same way.