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

  1. global gTargetsBlocked, gCurrentScore, gRoundScore, gDartCount, gRound, gEnableGrab, gDartList, gEnablethrow, gTotalDartsLeft, gDartScore, gIB, gDartButtons, gTargets, gRSBox, gCompDart
  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.   gCompDart = []
  15.   gEnablethrow = 0
  16.   gTotalDartsLeft = 0
  17.   gDartScore = [0, 0, 0]
  18.   gIB = []
  19.   gTargetsBlocked = []
  20.   gDartButtons = []
  21.   gTargets = []
  22.   gRSBox = []
  23. end
  24.