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

  1. ;
  2. ; AI Conditional FSM for freedom guard teams
  3. ;
  4. DefineAICondTree()
  5. {
  6.   Description("FG: This AI will attack fast and with all units types")
  7.   ;
  8.   ; Conditional State #1
  9.   ;
  10.   DefineCondState()
  11.   {
  12.     DefineCondition(2 0 0 50 "youwin1.txt")
  13.     {      
  14.       CritTimer(14000)
  15.     }
  16.     SetAIPFile(FDMed1.aip)
  17.   }
  18.  
  19.   ;
  20.   ; Conditional State #2
  21.   ;
  22.   DefineCondState()
  23.   {
  24.     DefineCondition(3 0 0 50 "youwin1.txt")
  25.     {
  26.       CritLessUnitsThanEnemy(100)
  27.     }
  28.     SetAIPFile(FDMed1.aip)
  29.   }
  30.  
  31.   ;
  32.   ; Conditional State #3
  33.   ;
  34.   DefineCondState()
  35.   {
  36.     DefineCondition(2 0 0 50 "youwin1.txt")
  37.     {
  38.       CritMoreUnitsThanEnemy(150)
  39.     }
  40.     SetAIPFile(FDMed2.aip)
  41.   }
  42. }
  43.