home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / CheckersSparse.dxr / 00004.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  225 b   |  12 lines

  1. on setArray
  2.   timerDelay = the ticks
  3.   bigArray = []
  4.   repeat with whichY = 1 to 440
  5.     oneLine = []
  6.     repeat with whichX = 1 to 580
  7.       add(oneLine, random(9))
  8.     end repeat
  9.     add(bigArray, oneLine)
  10.   end repeat
  11. end
  12.