I'm just about ready to show a playable beta version of the game, today will mostly be about gathering questions and implementing an XML parser. Unfortunately, the DBXML plugin doesn't work for me (makes it unable to compile ANY code when the plugin is loaded) so I'll be going with my own XML parser I wrote awhile back in native DBP code. My goal is to get 10-15 questions for each difficulty in at least 4 different categories.
If anyone would like to help, here's how the questions in the XML are formatted:
<category name="Dinosaurs">
<easy>
<question>
Which of the following dinosaurs is known for having very short arms?
<choice>Ichthyosaurus</choice>
<choice>Stegosaurus</choice>
<choice answer="yes">Tyrannosaurus rex</choice>
<choice>Giraffosaurus</choice>
</question>
<question>
Which of the following dinosaurs is able to fly?
<choice>Woolly Mammoth</choice>
<choice answer="yes">Pterodactyl</choice>
<choice>Triceratops</choice>
<choice>Saber-Toothed Tiger</choice>
</question>
<question>
How many horns does a Triceratops have?
<choice>1</choice>
<choice>2</choice>
<choice answer="yes">3</choice>
<choice>4</choice>
</question>
</easy>
<medium>
<question>
What does the word "dinosaur" mean?
<choice>Giant Lizard</choice>
<choice>Extinct Lizard</choice>
<choice>Thunder Lizard</choice>
<choice answer="yes">Terrible Lizard</choice>
</question>
</medium>
<hard>
<question>
The term "dinosaur" was given in 1842 by who?
<choice>James Owen</choice>
<choice answer="yes">Richard Owen</choice>
<choice>Richard Whitely</choice>
<choice>King James</choice>
</question>
<question>
Dinosaurs primarily roamed the Earth during which period?
<choice>Mesozoic</choice>
<choice>Paleozoic</choice>
<choice>Proterozoic</choice>
<choice>Cenozoic</choice>
</question>
</hard>
</category>
"Only the educated are free" ~Epictetus
"Imagination is more important than knowledge..." ~Einstein