home *** CD-ROM | disk | FTP | other *** search
/ DIGIZINE 1 / DIGIZINE.BIN / main / sony / highdes.dir / 00011_Script_11 < prev    next >
Text File  |  1995-09-12  |  369b  |  18 lines

  1. --go mesa main (mouseup)
  2.  
  3. on mouseUp
  4.   global gMesa,gDesScore
  5.   
  6.   set gMesa = (gMesa + 1)
  7.   
  8.   if gMesa = 1 then  --1st time clicking on Mesa sign
  9.     if gDesScore = 0 then  --and no points either
  10.       CLEARROLLOVER
  11.       go "mesa early"
  12.     end if
  13.   else  --has already accumulated or lost points
  14.     CLEARROLLOVER
  15.     go "mesa main"
  16.   end if
  17.   
  18. end