<?xml version="1.0" encoding="UTF-8"?>
<pugConfig>
  <!-- authLevel: ANY, ADMIN, MASTER, TRUSTED, NONE -->
  <!-- output: CHANNEL, PM, NOTICE -->
  <!-- commands -->
  <commands>
    <commandPug authLevel="none" output="channel">!pug</commandPug>
    <commandAdd authLevel="none" output="notice">!join</commandAdd>
    <commandRemove authLevel="none" output="notice">!remove</commandRemove>
    <commandList authLevel="none" output="channel">!list</commandList>
    <commandReset authLevel="admin" output="channel">!reset</commandReset>
  </commands>
  
  <pug>
    <!-- this is the channel that the bot will respond to commands in and output to -->
    <channel>#deaded-test</channel>
    <!-- if the bot is capable of changing the channel topic, should it? ( yes / no ) -->
    <allowTopicChange>yes</allowTopicChange>
    <!-- how many players are wanted for the PUG if none are specified -->
    <defaultMaxPlayers>12</defaultMaxPlayers>

    <!-- you can use any name for the team, even as simple as "team1" and "team2" -->
    <team1>
      <colour>$BLUE</colour>
      <name>GDF</name>
    </team1>
    <team2>
      <colour>$RED</colour>
      <name>Strogg</name>
    </team2>
    
    <!-- Should the person that starts the pug be automatically joined to it? ( yes / no ) -->
    <autoJoinStarter>yes</autoJoinStarter>
  </pug>
  
  <output>
    <added>You have been added to the pick up</added>
    <alreadyAdded>You are already signed in for the pick up</alreadyAdded>
    <removed>You have been removed from the pick up</removed>
    <noPug>No pick up has been started.</noPug>
    <noPlayers>No players signed in for pick up.</noPlayers>
    <inProgress>There is already a pug in progress.</inProgress>
    <reset>Game event reset.</reset>
    <starting>$GREEN$players players ready - PUG is starting ...</starting>
    
    <pugDetails>Pug started for $players players! To join in, type: $commandAdd</pugDetails>
    <pugDetails1>Pug started for $players players! $detail1. To join in, type: $commandAdd</pugDetails1>
    <pugDetails2>Pug started for $players players! $detail1 - $detail2. To join in, type: $commandAdd</pugDetails2>
        
    <channelTopic>Pug in progress ... $players needed, so sign up! ( $commandAdd )</channelTopic>
  </output>
</pugConfig>

