home *** CD-ROM | disk | FTP | other *** search
/ Hacker 70 / HACKER70.ISO / Igre / Startopia / startopiademo.exe / missions / 00 / AIpeephelp00.txt < prev    next >
Text File  |  2001-05-10  |  2KB  |  100 lines

  1. :AIGreys69
  2. if
  3.     port_count > 0
  4.     human = 0
  5.     turn > AIpeepwait
  6.     segmentdecks > 0
  7.     (peepstat race grey allset resident roger) < (health_charts_count * 1.5)
  8. then
  9.     place_peep grey resident skill 1 dedication 5 loyalty 5
  10.     addenergy (0-500) 
  11.     set AIpeepwait (turn + 1440)
  12. end
  13.  
  14. :AISirens69
  15. if
  16.     port_count > 0
  17.     human = 0
  18.     turn > AIpeepwait
  19.     segmentdecks > 0
  20.     (peepstat race siren allset resident roger) < (love_chair_count)
  21. then
  22.     place_peep siren resident skill 1 dedication 5 loyalty 5
  23.     addenergy (0-500) 
  24.     set AIpeepwait (turn + 1440)
  25. end
  26.  
  27. :AIHogs69
  28. if
  29.     port_count > 0
  30.     human = 0
  31.     turn > AIpeepwait
  32.     segmentdecks > 0
  33.     (peepstat race salt_hog allset resident roger) < ((recycler_count + workshop_count) * 2)
  34. then
  35.     place_peep salt_hog resident skill 1 dedication 5 loyalty 5
  36.     addenergy (0-500) 
  37.     set AIpeepwait (turn + 1440)
  38. end
  39.  
  40. :AITargs69
  41. if
  42.     port_count > 0
  43.     human = 0
  44.     turn > AIpeepwait
  45.     segmentdecks > 0
  46.     (peepstat race targ allset resident roger) < (satcom_count * 2)
  47. then
  48.     place_peep targ resident skill 1 dedication 5 loyalty 5
  49.     addenergy (0-500) 
  50.     set AIpeepwait (turn + 1440)
  51. end
  52.  
  53. :AIKarmas69
  54. if
  55.     port_count > 0
  56.     human = 0
  57.     turn > AIpeepwait
  58.     (peepstat race karmarama allset resident roger) < (segmentdecks / 3)
  59. then
  60.     place_peep karmarama resident skill 1 dedication 5 loyalty 5
  61.     addenergy (0-500) 
  62.     set AIpeepwait (turn + 1440)
  63. end
  64.  
  65. :AIZedems69
  66. if
  67.     port_count > 0
  68.     human = 0
  69.     turn > AIpeepwait
  70.     (peepstat race zedem_monk allset resident roger) < (segmentdecks / 3)
  71. then
  72.     place_peep zedem_monk resident skill 1 dedication 5 loyalty 5
  73.     addenergy (0-500) 
  74.     set AIpeepwait (turn + 1440)
  75. end
  76.  
  77. :AIScuzzers69
  78. if
  79.     port_count > 0
  80.     human = 0
  81.     turn > AIpeepwait
  82.     scutter_count < (segmentdecks * 2)
  83. then
  84.     place_peep scutter
  85.     addenergy (0-500) 
  86.     set AIpeepwait (turn + 1440)
  87. end
  88.  
  89. :AIPoliceScuzzers69
  90. if
  91.     port_count > 0
  92.     turn > AIpeepwait
  93.     human = 0
  94.     police_scutter_count < segmentdecks
  95. then
  96.     addenergy (0-1000)
  97.     place_peep police_scutter
  98.     set AIpeepwait (turn + 1440)
  99. end
  100.