Hi, I would like a PVP channel that all players can open and see when players kill other players; but not be able to talk in it.
I only have a XML file of the list of channels at the moment and have no idea what else to do:
An example of what I would like to appear in this channel would be:
01:23 Player 1 [LEVEL] has slain Player 2 [LEVEL]. Justified
01:23 Player 3 [LEVEL] has slain Player 1 [LEVEL]. Unjustified
etc
Could someone help me please?
Thanks
I only have a XML file of the list of channels at the moment and have no idea what else to do:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<channels>
<!-- README:
0 - dynamic, reserved for guilds
1 - always acts as Party channel, only "name" tag available
3 - always acts as Rule Violations channel
9 - acts as Help channel- clientsided message
65535 - DO NOT CHANGE THE ID- only "name", "enabled", "active" and "logged" tags available
-->
<channel id="1" name="Party"/>
<channel id="2" name="Staff" access="3"/>
<channel id="3" name="Rule Violations" logged="yes"/>
<channel id="4" name="Counsellor" access="1"/>
<channel id="5" name="Game Chat" level="2"/>
<channel id="6" name="Trade" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes.">
<vocation id="1-12"/>
</channel>
<channel id="7" name="Trade-Rookgaard" level="2" muted="120" conditionId="3" conditionMessage="You may only place one offer in two minutes.">
<vocation id="0"/>
</channel>
<channel id="8" name="RL-Chat" level="2"/>
<channel id="9" name="Help" logged="yes"/>
<channel id="65535" name="Private Chat Channel"/>
</channels>
An example of what I would like to appear in this channel would be:
01:23 Player 1 [LEVEL] has slain Player 2 [LEVEL]. Justified
01:23 Player 3 [LEVEL] has slain Player 1 [LEVEL]. Unjustified
etc
Could someone help me please?
Thanks