View Single Post
  #915  
Old May 9th, 2007, 09:47 AM
phalzyr's Avatar

phalzyr phalzyr is offline
Private
 
Join Date: Oct 2006
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
phalzyr is on a distinguished road
Default Re: Balance Mod v1.06

Captain Kwok: OK it does seem to be only those that have Natural Merchants racial traits right now. I can't get it to happen for others (unless they don't have a resupply or spaceport of course). After adding the line I mentioned yesterday I found a way to fix the trait issue but I'm sure you know how but anyway:

1: Go into Script_AI_GlobalVariable.txt file and add:
bool_Race_Uses_Natural_Merchants: boolean := FALSE

2: Go into the main_script.txt files for those that have this trait(Cue Cappa, Phong, Terran) and add:
set bool_Race_Uses_Natural_Merchants := TRUE

3: Go into Script_AI_Construction.txt and go to the Remove_Uneeded_Items function and change:
if (lst_AI_Our_Spaceport_Systems.Get(index) = 0) or (lst_AI_Our_Resupply_Systems.Get(index) = 0) then
TO:
if ((lst_AI_Our_Spaceport_Systems.Get(index) = 0) and (not bool_Race_Uses_Natural_Merchants)) or (lst_AI_Our_Resupply_Systems.Get(index) = 0) then


BTW: Did you know JRaenar has 6000 racial points worth of traits in their file. Natural merchants is last but is ignored because of that.

I'll let you know if when I start remaking my mod if it starts doing strange things again, but I was editing a lot so might just of changed something with the race that I had die once then not between two games...
Reply With Quote