home *** CD-ROM | disk | FTP | other *** search
/ Meet MediaBand / meetmediaband.bin / main / shared.dir / 00457_Script_RandomPlay < prev    next >
Text File  |  1995-07-13  |  4KB  |  176 lines

  1. on randomplay
  2.   repeat while 1 = 1    
  3.     set randomMovie = random(13)
  4.     if randomMovie = 1 then
  5.       set nextMovie = "archives"
  6.       if the movie = nextmovie then
  7.         nothing
  8.       else
  9.         puppetsound "wah wah wo oh"
  10.         updatestage
  11.         play movie "@:Archives"
  12.       end if
  13.     end if
  14.     
  15.     if randomMovie = 2 then
  16.       set nextMovie = "giftshop"
  17.       if the movie = nextmovie then
  18.         nothing
  19.       else
  20.         puppetsound "wah wah wo oh"
  21.         updatestage
  22.         play movie "@:giftshop"
  23.       end if
  24.     end if
  25.     
  26.     if randomMovie = 3 then
  27.       set nextMovie = "playroom"
  28.       if the movie = nextmovie then
  29.         nothing
  30.       else
  31.         puppetsound "wah wah wo oh"
  32.         updatestage
  33.         play movie "@:playroom"
  34.       end if
  35.     end if
  36.     
  37.     if randomMovie = 4 then
  38.       set nextMovie = "stage"
  39.       if the movie = nextmovie then
  40.         nothing
  41.       else
  42.         puppetsound "wah wah wo oh"
  43.         updatestage
  44.         play movie "@:Stage"
  45.       end if
  46.     end if
  47.     
  48.     if randomMovie = 5 then
  49.       set nextMovie = "AethMenu"
  50.       if the movie = nextmovie then
  51.         nothing
  52.       else
  53.         puppetsound "wah wah wo oh"
  54.         updatestage
  55.         play movie "@:AethMenu"
  56.       end if
  57.     end if
  58.     
  59.     if randomMovie = 6 then
  60.       set nextMovie = "smartbar"
  61.       if the movie = nextmovie then
  62.         nothing
  63.       else
  64.         puppetsound "wah wah wo oh"
  65.         updatestage
  66.         play movie "@:smartbar"
  67.       end if
  68.     end if
  69.     
  70.     if randomMovie = 7 then
  71.       set nextMovie = "techroom"
  72.       if the movie = nextmovie then
  73.         nothing
  74.       else
  75.         puppetsound "wah wah wo oh"
  76.         updatestage
  77.         play movie "@:techroom"
  78.       end if
  79.     end if
  80.     
  81.     if randomMovie = 8 then
  82.       set nextMovie = "HJMenu"
  83.       if the movie = nextmovie then
  84.         nothing
  85.       else
  86.         puppetsound "wah wah wo oh"
  87.         updatestage
  88.         play frame "begin" of movie "@:..:videos:HouseJam:HJMenu"
  89.       end if
  90.     end if
  91.     
  92.     if randomMovie = 9 then
  93.       set nextMovie = "Blast"
  94.       if the movie = nextmovie then
  95.         nothing
  96.       else
  97.         puppetsound "wah wah wo oh"
  98.         updatestage
  99.         play movie "@:Blast"
  100.       end if
  101.     end if
  102.     
  103.     if randomMovie = 10 then
  104.       set nextMovie = "Intro"
  105.       if the movie = nextmovie then
  106.         nothing
  107.       else
  108.         puppetsound "wah wah wo oh"
  109.         updatestage
  110.         play movie "@:Intro"
  111.       end if
  112.     end if
  113.     
  114.     if randomMovie = 11 then
  115.       set nextMovie = "ArcMenu"
  116.       if the movie = nextmovie then
  117.         nothing
  118.       else
  119.         puppetsound "wah wah wo oh"
  120.         updatestage
  121.         play movie "@:..:Archives:ArcMenu"
  122.       end if
  123.     end if
  124.     
  125.     if randomMovie = 12 then
  126.       set nextMovie = "Invemenu"
  127.       if the movie = nextmovie then
  128.         nothing
  129.       else
  130.         puppetsound "wah wah wo oh"
  131.         updatestage
  132.         play movie "@:Invemenu"
  133.       end if
  134.     end if
  135.     
  136.     if randomMovie = 13 then
  137.       set the colordepth = 16
  138.       if the colordepth <> 16 then set the colordepth = 32
  139.       
  140.       if the colordepth = 16 then
  141.         set nextMovie = "undome16"  
  142.         if the movie = nextmovie then
  143.           nothing
  144.         else
  145.           puppetsound "wah wah wo oh"
  146.           play frame 17 of movie "@:..:videos:undome16"  
  147.         end if
  148.       end if
  149.       
  150.       if the colordepth = 32 then
  151.         set nextMovie = "undome32"  
  152.         if the movie = nextmovie then
  153.           nothing
  154.         else
  155.           puppetsound "wah wah wo oh"
  156.           play frame 17 of movie "@:..:videos:undome32"  
  157.         end if
  158.       end if
  159.       
  160.       -- all other colordepths - use the 8-bit movie
  161.       set nextMovie = "undome8"
  162.       if the movie = nextmovie then
  163.         nothing
  164.       else
  165.         puppetsound "wah wah wo oh"
  166.         play frame 17 of movie "@:..:videos:undome8"
  167.       end if
  168.       
  169.       
  170.     end if
  171.     
  172.   end repeat
  173.   
  174. end randomplay
  175.  
  176.