home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 52 / ClassicFond52.iso / GAMES / DROIDW.RAR / DWCD.GOB / mission_cog_05_playsound.cog < prev    next >
Encoding:
Text File  |  1998-11-04  |  463 b   |  27 lines

  1. #standard type magnetic tram cog.
  2. #don't forget to set blocking walls to "no move"
  3. symbols
  4. message        user0
  5. message        user1
  6. sound          discowav
  7. end
  8.  
  9. ## Code Section
  10. code                  
  11. user0:
  12.      print("playing discowav");
  13.      playsong(0, 0, 0);
  14.      vchannel=playsoundlocal(discowav, 1.0, 0.0, 1); 
  15.      return;
  16.      
  17. user1:
  18.      stopsound(vchannel, 5.0);
  19.      sleep(5.0);
  20.      dwendlevel();
  21.      return;
  22.      
  23.  
  24. end
  25.  
  26.  
  27.