home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 3.11 / 1998-02_Disc_3.11.iso / DR-DEMO / DATA / DARK / AIP / IPDEFEND.FSM < prev    next >
Text File  |  1997-10-28  |  558b  |  32 lines

  1. ;
  2. ; AI Conditional FSM for Imperium defend base and perimeter.
  3. ;
  4. DefineAICondTree()
  5. {
  6.  
  7.   Description("Imperium: The AI will only defend its base and the perimeter.")
  8.   ;
  9.   ; Conditional State #1
  10.   ;
  11.   DefineCondState()
  12.   {
  13.     DefineCondition(2 0 0 50 defend_base)
  14.     {
  15.       CritLessUnitsThanEnemy(100)
  16.     }
  17.     SetAIPFile(IPDPer.aip)
  18.   }
  19.  
  20.   ;
  21.   ; Conditional State #2
  22.   ;
  23.   DefineCondState()
  24.   {
  25.     DefineCondition(1 0 0 50 defend_perimeter)
  26.     {
  27.       CritMoreUnitsThanEnemy(120)
  28.     }
  29.     SetAIPFile(IPDBase.aip)
  30.   }
  31. }
  32.