// Types
// -----
// C: Center message
// H: Hint message
// M: Menu message
// S: Say message
//    - Colors:  {DEFAULT}, {TEAM}, {GREEN}, {LIGHTGREEN}
//      For L4D you can use {RED}.
//      For TF2, DODS you can use {DARKGREEN}.
//      For DODS you can not use {LIGHTGREEN} or {TEAM}.
//    - Example: {GREEN}Current {LIGHTGREEN}Map: {DEFAULT}{CURRENTMAP}
// T: Top message
//    - Colors:  {WHITE},  {RED},  {GREEN}, {BLUE}, {YELLOW}, {PURPLE}, {CYAN},
//               {ORANGE}, {PINK}, {OLIVE}, {LIME}, {VIOLET}, {LIGHTBLUE}
//    - Example: {ORANGE} www.domain.com
//
// Flags (optional)
// -----
// Accepts flags of admins that will not see the advertisement.
// When omitted everyone will see the advertisement.
// When left empty only admins will see the advertisement.
//
// ShowCount (optional)
// ---------
// If omitted "1" is used. It meens how many times this ad will be shown in one full cycle. 
// Full cycle is when all ads shown all desired times. Another meaning of this field is weight.

"Advertisements"
{
    "1"
    {
        "type"      "C"
        "text"      "www.domain.com"
    }
    "2"
    {
        "type"      "CH"
        "text"      "contact@domain.com"
        "showcount" "2"
    }
    "3"
    {
        "type"      "M"
        "text"      "Next map is {SM_NEXTMAP} in {TIMELEFT} minutes."
        "flags"     "cft"
    }
    "4"
    {
        "type"      "S"
        "text"      "{GREEN}Current {LIGHTGREEN}Map: {DEFAULT}{CURRENTMAP}"
        "flags"     "z"
    }
    "5"
    {
        "type"      "T"
        "text"      "{ORANGE} Admins: friendly fire is {BOOL:MP_FRIENDLYFIRE}."
        "flags"     ""
    }
}
