View Single Post
  #135  
Old October 23rd, 2006, 04:18 PM
AngleWyrm's Avatar

AngleWyrm AngleWyrm is offline
Second Lieutenant
 
Join Date: Mar 2005
Location: Seattle, WA
Posts: 417
Thanks: 0
Thanked 0 Times in 0 Posts
AngleWyrm is on a distinguished road
Default Re: Balance Mod Available for SE:V

Not sure if I'm reading this right, but it looks like after executing Examine_Solar_System which contains:Code:
      // Warp Points to unseen systems or systems with enemies.
if (plr_has_colony) then
if (not Sys_Have_Seen_System(sys_long_Player_ID, dest_sys)) or (lst_AI_Enemy_System_Strengths.Get(dest_sys) > 0) then
call lst_AI_Patrol_System.add(sys_index)
call lst_AI_Patrol_Sector.add(wp_sect)
else
// Warp Points in system where we have colonies to systems where we don't.
if (not Sys_Player_Has_Colony_In_System(sys_long_Player_ID , dest_sys)) then
call lst_AI_Patrol_Secondary_System.add(sys_index)
call lst_AI_Patrol_Secondary_Sector.add(wp_sect)
endif
endif
endif


will result in lst_AI_Patrol_System with a list of frontier systems, and lst_AI_Patrol_Secondary_System will contain a list of adjoining unexplored/enemy systems.

If so, then maybe we get/sort a list of colony shipyards that are in PatrolSystems. Then that list of shipyards would be well suited for expansion colony ships
Reply With Quote