home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / AstroBubble.dxr / 00001.ls next >
Encoding:
Text File  |  2002-01-25  |  832 b   |  30 lines

  1. on exitFrame me
  2.   global mouseinput, playerScore, playerPower, updatepowerDisplay, timerRecord, spawnDelay, tickRecord, highestBowFrame, lowestBowFrame, speedlevel, gameLevel, gameProgress, gameOverDelay, messageData
  3.   mouseinput = 0
  4.   playerScore = 0
  5.   playerPower = 10
  6.   member("Score Display").text = "0"
  7.   member("Power Display").text = "10"
  8.   updatepowerDisplay = 0
  9.   initializeConstants()
  10.   initializeplayer()
  11.   initializeRescueThings()
  12.   initializeFallingThings()
  13.   initializeChainLinks()
  14.   initializeParticlereference()
  15.   initializeParticles()
  16.   init_ParticleConstants()
  17.   init_Particles()
  18.   timerRecord = the ticks
  19.   spawnDelay = 0
  20.   tickRecord = the ticks
  21.   highestBowFrame = 0
  22.   lowestBowFrame = 20
  23.   speedlevel = 0
  24.   gameLevel = 1
  25.   gameProgress = 0
  26.   gameOverDelay = 40
  27.   messageData = [0, point(0, 0), 0]
  28.   go(10)
  29. end
  30.