home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 52 / ClassicFond52.iso / GAMES / DROIDW.RAR / DWCD.GOB / mission_cog_00_conveyor.cog < prev    next >
Text File  |  1998-11-04  |  1KB  |  49 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # 00_conveyor.cog
  4. #
  5. # generic conveyor belt script
  6. #
  7. # This script will control 1-8 conveyor belts moving in the same direction
  8. # and with the same velocity.  The conveyors run continuously.
  9. #
  10. # [IS]
  11. #
  12. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  13. # ========================================================================================
  14.  
  15. symbols
  16.     message    startup
  17.  
  18.     vector    vec0            desc=conveyor_direction
  19.     float        speed=2.0    desc=conveyor_speed
  20.  
  21.     surface    convey0        nolink
  22.     surface    convey1        nolink
  23.     surface    convey2        nolink
  24.     surface    convey3        nolink
  25.     surface    convey4        nolink
  26.     surface    convey5        nolink
  27.     surface    convey6        nolink
  28.     surface    convey7        nolink
  29.  
  30.     int        garbage        local
  31.     int        cnt            local
  32. //     sound     convsound=MCH00tCnvyr01.wav
  33.      int       volume=0.9
  34. end
  35.  
  36. # ========================================================================================
  37.  
  38. code
  39. startup:
  40.     for (cnt = 0; cnt<=7; cnt=cnt+1) {
  41.         if (convey0[cnt] >= 0) {
  42.                garbage=slidewall(convey0[cnt], vec0, speed);
  43.  //              playsoundpos(convsound, getsurfacecenter(convey0[cnt]), volume, -1, -1, 0x1);
  44.           }
  45.     }
  46.     return;
  47. end
  48.  
  49.