home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Cdrom / Pavilions / IBM / Konishiki / konishiki.dcr / Untitled-1_12.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  439 b   |  23 lines

  1. on exitFrame
  2.   global counter, counterloc
  3.   set counter to counter - 2
  4.   if (counter mod 10) = 0 then
  5.     set counterloc to counterloc - 4
  6.     set the locH of sprite 18 to counterloc
  7.   end if
  8.   moveufo()
  9.   if counter <= 0 then
  10.     set the locH of sprite 18 to -500
  11.     moveaway()
  12.     set the actorList to []
  13.   else
  14.     go(marker(0))
  15.   end if
  16. end
  17.  
  18. on moveaway
  19.   repeat with n = 7 to 11
  20.     set the locH of sprite n to -500
  21.   end repeat
  22. end
  23.