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

  1. ;MINPEEPS******************************************************************
  2. :mintargs
  3. if
  4.     segmentdecks > 0
  5.     turn > 3600
  6.     port_count > 0
  7.     turn > mintargs
  8.     targ_count < 1
  9. then
  10.     place_peep targ skill 3 dedication 3 loyalty 3
  11.     set mintargs (turn + 5000)
  12. end
  13.  
  14. :mingreys
  15. if
  16.     segmentdecks > 0
  17.     turn > 4800
  18.     port_count > 0
  19.     turn > mingreys
  20.     grey_count < 1
  21. then
  22.     place_peep grey skill 3 dedication 3 loyalty 3
  23.     set mingreys (turn + 5000)
  24. end
  25.  
  26. :minhogs
  27. if
  28.     segmentdecks > 0
  29.     turn > 6000
  30.     port_count > 0
  31.     turn > minhogs
  32.     salt_hog_count < 1
  33. then
  34.     place_peep salt_hog skill 3 dedication 3 loyalty 3
  35.     set minhogs (turn + 5000)
  36. end
  37.  
  38. :minsirens
  39. if
  40.     segmentdecks > 0
  41.     turn > 7200
  42.     port_count > 0
  43.     turn > minsirens
  44.     siren_count < 1
  45. then
  46.     place_peep siren skill 3 dedication 3 loyalty 3
  47.     set minsirens (turn + 5000)
  48. end
  49.  
  50. :minkarmas
  51. if
  52.     segmentdecks > 0
  53.     turn > 2400
  54.     port_count > 0
  55.     turn > minkarmas
  56.     karmarama_count < 1
  57. then
  58.     place_peep karmarama skill 3 dedication 3 loyalty 3
  59.     set minkarmas (turn + 5000)
  60. end
  61.  
  62.