home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 22 / cdrt22.iso / pc / bugbook / map.dir / 00229_Script_229 < prev    next >
Text File  |  1995-06-26  |  415b  |  22 lines

  1. on exitFrame
  2.   global lastMapRandom
  3.   
  4.   repeat with x=1 to 5
  5.     if rollOver(x+23) then EXIT REPEAT
  6.   end repeat
  7.   
  8.   
  9.   if not(x= lastMapRandom) then
  10.     if x<6 then
  11.       set the timeOutScript to EMPTY
  12.       put x into lastMapRandom
  13.       go (lastMapRandom&".Roll")
  14.     else
  15.       go "map"
  16.       set the timeOutScript to "doTimeOut()"
  17.       set timeOutLapsed =0
  18.     end if
  19.   end if
  20.   
  21.   
  22. end