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

  1. on exitFrame me
  2.   global tileSO, pathIndex, usedGrid, playerTMoves, playerTCaptures, playerTLosses, whichLevel, gameScore, mustGiveUp
  3.   tileSO = 5
  4.   sprite(tileSO).locZ = 1
  5.   initializeBoard()
  6.   pathIndex = []
  7.   usedGrid = []
  8.   playerTMoves = 0
  9.   playerTCaptures = 0
  10.   playerTLosses = 0
  11.   whichLevel = whichLevel + 1
  12.   member("Captures").text = "0"
  13.   member("Losses").text = "0"
  14.   member("Moves").text = "0"
  15.   member("Games").text = string(whichLevel)
  16.   mustGiveUp = 0
  17.   calcScore()
  18.   go(9)
  19. end
  20.