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

  1. #
  2. # Droids Cog Script
  3. #
  4. #    SY_acidelev.cog    
  5. #
  6. # 04/15/98    [DGS]    Created (The amazing new electronic sounds of Jean Jaques Perry)
  7. #
  8. # --------------------------------------------------------------------------------
  9.  
  10.  
  11. symbols
  12.     message        arrived
  13.     message        timer
  14.     message        startup
  15.     thing        elev_o
  16.     flex        speed
  17. end
  18.  
  19. ## Code Section
  20. code
  21. startup:
  22.     settimer(2); 
  23.     return;
  24.  
  25. arrived:
  26.     settimer(2);
  27.     return;
  28.  
  29. timer:
  30.     movetoframe(elev_o,1 - getcurframe(elev_o),speed);
  31.     return;
  32.  
  33. end
  34.  
  35.