home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / Darts(Clock).dxr / Internal_1.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  584 b   |  24 lines

  1. global gCurrentScore, gRoundScore, gDartCount, gRound, gEnableGrab, gDartList, gEnablethrow, gTotalDartsLeft, gDartScore, gIB, gDartButtons, gTargets, gRSBox, gCurrentSector, gGotDouble
  2.  
  3. on prepareFrame me
  4.   gCurrentScore = 0
  5.   gRoundScore = []
  6.   set the floatPrecision to 0
  7.   repeat while gRoundScore.count < 20
  8.     gRoundScore.add(0)
  9.   end repeat
  10.   gDartCount = 0
  11.   gRound = 1
  12.   gEnableGrab = 1
  13.   gDartList = []
  14.   gEnablethrow = 0
  15.   gTotalDartsLeft = 60
  16.   gDartScore = [0, 0, 0]
  17.   gIB = []
  18.   gDartButtons = []
  19.   gTargets = []
  20.   gRSBox = []
  21.   gGotDouble = 0
  22.   gCurrentSector = 1
  23. end
  24.