home *** CD-ROM | disk | FTP | other *** search
/ 321 GAMES / 321GAMES.iso / logic / runes / runes.exe / runes.DXR / 00013_ANAMATEORACLE.ls < prev    next >
Encoding:
Text File  |  1996-07-01  |  427 b   |  21 lines

  1. on ANIMATEORACLE
  2.   global TELECNT
  3.   set TELECNT to TELECNT + 1
  4.   if TELECNT = 1 then
  5.     set the castNum of sprite 9 to 15
  6.     updateStage()
  7.   end if
  8.   if (TELECNT = 6) or (TELECNT = 11) then
  9.     if TELECNT = 6 then
  10.       set the castNum of sprite 9 to 14
  11.     end if
  12.     if TELECNT = 11 then
  13.       set the castNum of sprite 9 to 16
  14.     end if
  15.     updateStage()
  16.   end if
  17.   if TELECNT > 16 then
  18.     set TELECNT to 0
  19.   end if
  20. end
  21.