Admin Channel Commands to Public Irc Channel [message #376508] |
Mon, 16 March 2009 21:11 |
|
T0tNl
Messages: 63 Registered: July 2007
Karma: 0
|
Recruit |
|
|
!vehicles/!ve - This command will display all the current tanks on the map, this includes the harvester.
!building/!bl - This command show the buildings ingame and there health.
Can anyone help me with these commands,
already setup only show in admin channel not public irc what file may i approach?
|
|
|
|
Re: Admin Channel Commands to Public Irc Channel [message #376574 is a reply to message #376508] |
Tue, 17 March 2009 13:24 |
|
danpaul88
Messages: 5795 Registered: June 2004 Location: England
Karma: 0
|
General (5 Stars) |
|
|
If your using BRenBot open commands.xml in notepad
Find;
<command name="buildings">
<permission level="2"/>
<syntax value="!buildings"/>
<help value="Displays all buildings and their health"/>
<enabled value="1"/>
<group>irc_admin</group>
<module>gamelog</module>
<hideInHelp value="0"/>
</command>
<command name="vehicles">
<permission level="2"/>
<syntax value="!vehicles"/>
<help value="Displays all vehicles"/>
<enabled value="1"/>
<group>irc_admin</group>
<module>gamelog</module>
<alias>ve</alias>
<hideInHelp value="0"/>
</command>
Replace it with;
<command name="buildings">
<permission level="2"/>
<syntax value="!buildings"/>
<help value="Displays all buildings and their health"/>
<enabled value="1"/>
<group>irc_admin</group>
<group>irc_public</group>
<module>gamelog</module>
<hideInHelp value="0"/>
</command>
<command name="vehicles">
<permission level="2"/>
<syntax value="!vehicles"/>
<help value="Displays all vehicles"/>
<enabled value="1"/>
<group>irc_admin</group>
<group>irc_public</group>
<module>gamelog</module>
<alias>ve</alias>
<hideInHelp value="0"/>
</command>
(Or just add the two <group>irc_public</group> lines manually)
[Updated on: Tue, 17 March 2009 13:25] Report message to a moderator
|
|
|
|