home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April B / Pcwk4b98.iso / Gry / DARKREIG / Data / Dark / Aip / IPSpecal.FSM < prev    next >
Text File  |  1997-10-28  |  1KB  |  60 lines

  1. ;
  2. ; AI Conditional FSM for freedom guard teams
  3. ;
  4. DefineAICondTree()
  5. {
  6.   Description("Imperium: This AI will use highest level units it can build")
  7.   ;
  8.   ; Conditional State #1
  9.   ;
  10.   DefineCondState()
  11.   {
  12.     DefineCondition(2 0 0 50 "youwin1.txt")
  13.     {      
  14.       CritBuildBuilding(fc2 0 1)
  15.     }
  16.     SetAIPFile(IDHar1.aip)
  17.   }
  18.  
  19.   ;
  20.   ; Conditional State #2
  21.   ;
  22.   DefineCondState()
  23.   {
  24.     DefineCondition(3 0 0 50 "youwin1.txt")
  25.     {
  26.       CritBuildBuilding(fgar 0 1)
  27.     }
  28.     DefineCondition(1 0 0 50 "youwin1.txt")
  29.     {
  30.      CritNOT()
  31.       {
  32.       CritBuildBuilding(fc2 0 1)
  33.       }
  34.     }
  35.     SetAIPFile(IDHar2.aip)
  36.   }
  37.  
  38.   ;
  39.   ; Conditional State #3
  40.   ;
  41.   DefineCondState()
  42.   {
  43.     DefineCondition(1 0 0 50 "youwin1.txt")
  44.     {
  45.      CritNOT()
  46.       {
  47.       CritBuildBuilding(fc2 0 1)
  48.       }
  49.     }
  50.     DefineCondition(2 0 0 50 "youwin1.txt")
  51.     { 
  52.       CritNOT()
  53.        {
  54.         CritBuildBuilding(fgar 0 1)
  55.        }
  56.     }
  57.     SetAIPFile(IDHar3.aip)
  58.   }
  59. }
  60.