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

  1. global pActiveBullets, pBulletDirection, gCurrentLevel, gTotalScore, gRemainderHealth, gNumLives, gMapChannel, gWon, pInvincibility, gBombList, pEneBombList, pEneObject, pAntObject
  2.  
  3. on prepareMovie me
  4.   gCurrentLevel = 0
  5.   gTotalScore = 0
  6.   gRemainderHealth = 0
  7.   gMapChannel = 7
  8.   gNumLives = 3
  9.   displayTries()
  10. end
  11.  
  12. on displayScore
  13.   member("ScoreDisplay").text = string(gTotalScore)
  14. end
  15.  
  16. on displayTries
  17.   member("LivesDisplay").text = string(gNumLives)
  18. end
  19.  
  20. on displayLevel
  21.   member("LevelDisplay").text = string(gCurrentLevel)
  22. end
  23.