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

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