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

  1. on exitFrame me
  2.   global playerScore, totalScore, playerData
  3.   fBonus = integer(playerData[8] / 2)
  4.   totalScore = totalScore + playerScore + fBonus
  5.   member("Fuel Bonus Tally").text = string(fBonus)
  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("level_complete", 1)
  12. end
  13.