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

  1. on exitFrame me
  2.   global deathState, reloadRate, reloadTimer, playerData, playerSO, bgOffset, meteorData, meteorSO, spawnDelay, playerScore
  3.   initializeDrones()
  4.   initializeAliens()
  5.   initializelasers()
  6.   reloadRate = 15
  7.   reloadTimer = 0
  8.   playerData = [1, point(2900, 2200)]
  9.   playerSO = 5
  10.   bgOffset = the loc of sprite 1
  11.   meteorData = [0, point(0, 0), point(3, 2), 0]
  12.   spawnDelay = 60
  13.   playerScore = 0
  14.   repeat with wAdd = 1 to 1
  15.     addAlien()
  16.   end repeat
  17. end
  18.