Simulation quiz where score reduces based on number of attempts
I have a requirement to build a software simulation based quiz, where the user is penalised for clicking in the wrong place.
The only method i've been able to come up with is to have multiple identical steps in the quiz which only allow 1 attempt before moving on:
Slide 1 Question 1 "Click on the X" - 5 points, jump to slide 4
Slide 2 Question 2 "Click on the X" - 3 points, jump to slide 4
Slide 3 Question 3 "Click on the X" - 1 point, next slide
Slide 4 Next Question...
This works functionally but leaves me with the following issues:
Question Count is wrong, a user will assume they've just completed 1 question successfully, in reality they have missed 2 other questions
Maximum score is wrong, a user who gets it right first time will have still missed out on 4 points
Can anyone advise on an approach for this? Is there a way to manipulate the system variables for total questions and maximum score?
