home *** CD-ROM | disk | FTP | other *** search
/ Car Screensaver - Toyota / TOYOTA.iso / mjparty / hsqdemo.dxr / 00076.ls < prev    next >
Encoding:
Text File  |  1996-09-26  |  903 b   |  31 lines

  1. on quizramove
  2.   global work8, work9
  3.   set a to the timer / 23
  4.   if work8 < a then
  5.     set x to the locH of sprite 20
  6.     if work9 = 0 then
  7.       if x = 347 then
  8.         set the castNum of sprite 20 to cast "QUIZRA10"
  9.         set work9 to 1
  10.       else
  11.         set b to value(chars(the name of cast the castNum of sprite 20, 8, 8))
  12.         set c to (b + 1) mod 2
  13.         set the castNum of sprite 20 to cast ("QUIZRA0" & string(c))
  14.         set the locH of sprite 20 to x - 7
  15.       end if
  16.     else
  17.       if x = 578 then
  18.         set the castNum of sprite 20 to cast "QUIZRA00"
  19.         set work9 to 0
  20.       else
  21.         set b to value(chars(the name of cast the castNum of sprite 20, 8, 8))
  22.         set c to (b + 1) mod 2
  23.         set the castNum of sprite 20 to cast ("QUIZRA1" & string(c))
  24.         set the locH of sprite 20 to x + 7
  25.       end if
  26.     end if
  27.     set work8 to a
  28.     updateStage()
  29.   end if
  30. end
  31.