home *** CD-ROM | disk | FTP | other *** search
/ HYPE / HYPE.ISO / city.dxr / 00220.ls < prev    next >
Encoding:
Text File  |  1996-09-05  |  533 b   |  22 lines

  1. on exitFrame
  2.   repeat while (the mouseH > 258) and (the mouseH < 407) and ((the mouseV > 209) and (the mouseV < 392))
  3.     cursor(3)
  4.     set the locH of sprite 10 to 338
  5.     set the locH of sprite 11 to 337
  6.     set the foreColor of sprite 10 to random(256) - 1
  7.     puppetSound("tsur.wav")
  8.     updateStage()
  9.     if the mouseDown then
  10.       puppetSprite(10, 1)
  11.       puppetSprite(11, 1)
  12.       go("st_tino")
  13.       abort()
  14.     end if
  15.   end repeat
  16.   puppetSprite(10, 0)
  17.   puppetSprite(11, 0)
  18.   cursor(-1)
  19.   cback("84")
  20.   go(the frame)
  21. end
  22.