home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / CheckersSparse.dxr / 00001.ls next >
Encoding:
Text File  |  2002-01-25  |  352 b   |  15 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.   mustGiveUp = 0
  13.   calcScore()
  14. end
  15.