home *** CD-ROM | disk | FTP | other *** search
- on exitFrame me
- global playerScore, totalScore, playerData, accuracyRating
- if accuracyRating[2] > 0 then
- accBonus = integer(1000 * accuracyRating[1] / accuracyRating[2])
- else
- accBonus = 0
- end if
- totalScore = totalScore + playerScore + accBonus
- member("Accuracy Bonus Tally").text = string(accBonus)
- member("Level Score Tally").text = string(playerScore)
- member("Total Score Tally").text = string(totalScore)
- repeat with whichDisp = 180 to 200
- sprite(whichDisp).locZ = 999
- end repeat
- playSound("Lose", 1)
- end
-