home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / DogFight.dxr / 00151.ls < prev    next >
Encoding:
Text File  |  2002-01-31  |  338 b   |  11 lines

  1. on exitFrame me
  2.   global playerScore, totalScore, levelScore, accuracyRating
  3.   totalScore = totalScore + levelScore
  4.   member("Level Score Tally").text = string(levelScore)
  5.   member("Total Score Tally").text = string(totalScore)
  6.   repeat with whichDisp = 180 to 200
  7.     sprite(whichDisp).locZ = 999
  8.   end repeat
  9.   playSound("Lose", 5)
  10. end
  11.