home *** CD-ROM | disk | FTP | other *** search
/ Igromania 1999 August / Igromania_1999-08.iso / Demo / JanesFleetCommand / data1.cab / Doctrines_Files / Missile.txt < prev    next >
Text File  |  1999-07-22  |  293b  |  21 lines

  1. TITLE Missile Doctrine
  2.  
  3. RULE Enable
  4. IF TIMER1 = 0 THEN
  5.     ENABLE
  6.     DEBUG "Missile Enabled"
  7. END
  8.  
  9. RULE Shutdown
  10. IF TIMER2 = 0 THEN
  11.     DEBUG "Missile failed to acquire"
  12.     SHUTDOWN
  13. END
  14.  
  15. RULE Home
  16. IF NEWTRACK = 1 THEN
  17.     DEBUG "Missile Homing"
  18.     SET_TIMER 2 -1
  19.     TACTIC terminal_home
  20. END
  21.