home *** CD-ROM | disk | FTP | other *** search
/ Kimeruze! Yamikon! / Kimeruze! Yamikon!.iso / mac / YARIKON / EVENT10.Dxr / 00051.ls < prev    next >
Encoding:
Text File  |  1996-10-23  |  382 b   |  21 lines

  1. on exitFrame
  2.   global selected, round, point, uscore, gscore
  3.   if selected = 1 then
  4.     set the visible of sprite (9 + round) to 1
  5.     updateStage()
  6.     if point = 1 then
  7.       go("draw")
  8.     else
  9.       set gscore to gscore + 1
  10.       go("lose")
  11.     end if
  12.   else
  13.     if point = 0 then
  14.       go("draw")
  15.     else
  16.       set uscore to uscore + 1
  17.       go("win")
  18.     end if
  19.   end if
  20. end
  21.