#
# how it is called
quiz_name = PC Quizz

#
# describe it
quiz_description = The coolest pc quiz ever!

#
# key of the quiz, use some random string here.
# you may generate it using echo "your quiz name" | md5sum
key = 14327f3e9b3e5ed9a63e504b83d6de14

#
# config section for the quiz
<config>
  max_best       = 10    # how many users are listed in the best-of list
  # (only counter_time or counter_points can be turned on!)
  counter_time   = 0     # show the time counter (0 == off) 
  counter_points = 1     # show the point counter (0 == off)
  cookie         = none  # which kind of cookie shall be used:
                         #  none (no cookie)
                         #  user (allow one entry per user)
                         #  ip   (allow one entry per source ip)
                         #  both (allow one entry per user and source ip)
  cookie_expire  = +1M   # when cookies are expiring, see: 'perldoc CGI'.
</config>


#
# questions section.
# there is no limitation on the number of questions.
<question 1>
  time     = 20   # max seconds it should take
  points   = 400  # means 2 points per second, max available 40 if 0 seconds needed
  type     = M    # possible values: M (multiple choice)
                  #                  S (single choice)
                  #                  R (regular expression)
                  #                  O (optional-multiple choice)

  question = How many windows has the school?

  <choice>
    A = One per room
    B = Only on the secretary pc
    C = None, they are using linux
  </choice>

  result   = A,C
</question>



<question 2>
  time   = 20
  points = 400
  type   = S
  question = How much is the fish?!

  <choice>
    A = Free for all!
    B = Out of order :-(
    C = What the fuck you fucking asshole piss off man!!!
  </choice>

  result = C
</question>




<question 3>
  time   = 20
  points = 400
  type   = R
  question = What is the truth?
  result   = hitler.*dead
</question>


<question 4>
  time   = 20
  points = 400
  type   = O
  question = Who killed JFK?

  <choice>
    A = God.
    B = Himself.
    C = His murder.
    D = The gun.
  </choice>

  result   = B,C,D
  required = 2
</question>

