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

  1. #standard type magnetic tram cog.
  2. #don't forget to set blocking walls to "no move"
  3. symbols
  4. message        startup
  5. message        user0
  6. message        timer
  7. thing          AD1                
  8. keyframe       idledancekey
  9. thing          idlecamera
  10. thing          headtarget
  11. thing          foottarget
  12. thing          footcamera
  13. cog            ebdncog
  14.       
  15. end
  16.  
  17. ## Code Section
  18. code  
  19. startup:                
  20. user0:
  21.      print("idlecamcog activate");
  22.      setthinglight(AD1, 0.5, 0);
  23.      setcamerafocii(2, headtarget, idlecamera); 
  24.      setcurrentcamera(2);
  25.      playkey(AD1, idledancekey, 1, 0);
  26.      settimer(3);
  27.      return;
  28.  
  29. timer:     
  30.      setcamerafocii(2, foottarget, footcamera); 
  31.      setcurrentcamera(2);     
  32.      sleep(3);
  33.      sendmessage(ebdncog, user1);
  34.      return;
  35.      
  36.  
  37. end
  38.  
  39.  
  40.