home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / RoboticInvaders.dxr / 00107.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  474 b   |  13 lines

  1. on exitFrame me
  2.   global playerScore, totalScore, playerData, accuracyRating
  3.   accBonus = integer(1000 * accuracyRating[1] / accuracyRating[2])
  4.   totalScore = totalScore + playerScore + accBonus
  5.   member("Accuracy Bonus Tally").text = string(accBonus)
  6.   member("Level Score Tally").text = string(playerScore)
  7.   member("Total Score Tally").text = string(totalScore)
  8.   repeat with whichDisp = 180 to 200
  9.     sprite(whichDisp).locZ = 999
  10.   end repeat
  11.   playSound("Win", 1)
  12. end
  13.