Hi
I am making a game and after some time it will be interupted by a question. The user will answer it, continue to play, a new one will come up after some time etc
I want to set in my textboxes questions and answers from an xml file.
I want to count the number of questions and add their number to a variable
I want to shuffle answers and questions every time, but i dont want them to show up more than one time until the user losses (no more lives or time)
I want to set the algorithm to check if the question is right (in the xml) and procceed
my xml structure is like this
<?xml version=""1.0"" encoding=""utf-8""?>
<questions>
<question id=""1"" text=""blah blah"">
<answer qid=""2"" correct=""true"">a</answer>
<answer qid=""3"" correct=""false"">b</answer>
<answer qid=""4"" correct=""false"">c</answer>
<answer qid=""5"" correct=""false"">d</answer>
</question>
</questions>
I saw all the tutorials but i cant do what i want so far.
Thanks in advance