Thread: BEsaysounds
View Single Post
BehaartesEtwas
Senior Member
Join Date: Dec 2007
Old 06-13-2008 , 03:25   Re: BEsaysounds
Reply With Quote #96

Well.... my config is wrong as well, sorry!


correct would be:
Code:
    "cu" {
      "files" {            // random sound
        "1" "misc/cu.mp3"
        "2" "misc/another_cu.mp3"
        // place any number of consecutive numbered files here
      }
    }
The number of { and } has do be equal, it does not matter how you indent the lines. So with two random sounds it looks like:
Code:
    "cu" {
      "files" {
        "1" "misc/cu.mp3"
        "2" "misc/another_cu.mp3"
        // place any number of consecutive numbered files here
      }
    }
    "hi" {
      "files" {
        "1" "misc/hi.mp3"
        "2" "misc/hy.mp3"
        "3" "misc/servus.wav"
        "4" "misc/tach.mp3"
      }
    }
I will correct my config in the next release and make a warning in the first post to all other users. Thanks for bringing this to my attention!
BehaartesEtwas is offline