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

  1. global gSomething
  2.  
  3. on exitFrame me
  4.   gSomething = 130
  5.   repeat with gRunY = 0 to 9
  6.     repeat with gRunX = 0 to 12
  7.       sprite(gSomething).loc = point(128 + (gRunX * 25), 100 + (gRunY * 24))
  8.       sprite(gSomething).blend = 100
  9.       sprite(gSomething).visible = 1
  10.       gSomething = gSomething + 1
  11.     end repeat
  12.   end repeat
  13. end
  14.