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 / Internal_29.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  427 b   |  22 lines

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