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

  1. on exitFrame me
  2.   global blasterData, gatewayData, totalScore, playerScore, playerData, warningLevels, warningSwitch, warningDelay
  3.   initializeTerrain()
  4.   initializeMap()
  5.   initializeEnemies()
  6.   initializeplayer()
  7.   initializeBulletStreaks()
  8.   init_ParticleConstants()
  9.   init_Particles()
  10.   blasterData = [0, point(0, 0), point(0, 0), 0, 0]
  11.   gatewayData = [0, 0]
  12.   member("Score Display").text = string(totalScore + playerScore)
  13.   set the width of sprite 506 to integer(playerData[4] / 100.0 * 152)
  14.   warningLevels = [50, 25, 15, 10, 5]
  15.   warningSwitch = [0, 0, 0, 0, 0]
  16.   warningDelay = 0
  17.   sprite(2).visible = 0
  18.   sprite(2).locZ = 999
  19.   repeat with wX = 1 to 8
  20.     wSprite = wX + 520
  21.     sprite(wSprite).visible = 0
  22.   end repeat
  23.   go(10)
  24. end
  25.