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

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