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

  1. # Jedi Knight Cog Script
  2. #
  3. # 00_Door.cog
  4. #
  5. # Generic Door Script
  6. #
  7. # [IS]
  8. #
  9. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  10. # ========================================================================================
  11.  
  12. symbols
  13.     message    user1        
  14.     message    arrived        
  15.     message    timer        
  16.  
  17.      thing          camera1
  18.                     
  19.     float        moveSpeed=0.5
  20.     float        sleepTime=2.0
  21.     float        lightValue=0.5
  22.  
  23.     int        numDoors=0    local
  24.     int        doorStatus    local
  25.     int        moveStatus    local
  26.     int        i             local
  27.      
  28.      cog       ecam2
  29.      
  30. end
  31.  
  32. # ========================================================================================
  33.  
  34. code
  35.  
  36. user1:
  37.      //user1 received from tanks.cog when solution reached
  38.      Sleep(0.5);
  39.      setcamerafocus(0, camera1);
  40.      setcurrentcamera(0);
  41.      dwfreezeplayer();
  42.      print("ooplah");
  43.      MoveToFrame(camera1, 1, 1.3);
  44.      settimer(10);
  45.      return;
  46.      
  47. //timer:
  48.      //movetoframe(camera2, 1, 3);
  49.      //return;
  50.      
  51. timer:          
  52.           dwunfreezeplayer();
  53.           setcurrentcamera(7);    //return camera to normal
  54.           sendmessage(ecam2, user2);    
  55.      return;
  56.      
  57. end
  58.  
  59.