DarkBlizz

Game On => Land of AI => STARCRAFT II: WINGS OF LIBERTY => AI Discussion => Topic started by: Yuna_Q on March 03, 2010, 11:01:16 PM

Title: if anyone have factory addon problem...
Post by: Yuna_Q on March 03, 2010, 11:01:16 PM
if ai doesnt make factory tech addon ,
check the number of barracks's tech addon
on sc2 buildings can share their addons.
so, if the number of barracks addon is 2 then,
number of factory addon must more than barracks.

wrong coding

AISetStock( player, 2, c_TB_Barracks );
AISetStock( player, 2, c_TB_BarracksTechLab );
AISetStock( player, 2, c_TB_Factory);
AISetStock( player, 2, c_TB_FactoryTechLab);


right coding

AISetStock( player, 2, c_TB_Barracks );
AISetStock( player, 2, c_TB_BarracksTechLab );
AISetStock( player, 2, c_TB_Factory);
AISetStock( player, 4, c_TB_FactoryTechLab);
Title: Re: if anyone have factory addon problem...
Post by: Kernel64 on March 04, 2010, 03:12:55 AM
Thanks Yuna_Q! Much appreciated.
Title: Re: if anyone have factory addon problem...
Post by: siman on March 04, 2010, 03:21:17 AM
Thank you. This is really tricky.


Is it a bug at all? since the starport tech lab could built properly. I expect either they all share the same tech lab or all count individually.
Title: Re: if anyone have factory addon problem...
Post by: Yuna_Q on March 04, 2010, 05:49:25 AM
Quote from: siman on March 04, 2010, 03:21:17 AM
Thank you. This is really tricky.


Is it a bug at all? since the starport tech lab could built properly. I expect either they all share the same tech lab or all count individually.

only barraks and factory, not starport
Title: Re: if anyone have factory addon problem...
Post by: siman on March 04, 2010, 10:49:58 AM
yes, but if tech-lab is an addon shared by all terran buildings, shouldn't all the tech-lab count together?
now it is confusing that the tech lab of barrack and factory count together, while the starport does not.
Title: Re: if anyone have factory addon problem...
Post by: chetjan on March 04, 2010, 07:27:16 PM
I have not had that problem, seems wierd. sorry i can't be more helpful