Log in

View Full Version : Building tree can have branches?



Squid
01-10-2007, 23:19
In EDB can you have a building branch at some point so that one level has two potential upgrades?

So something along the lines of:



building b1
{
levels b1, b2, b2a, b3, b3a
{
b1 requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, }
{
capability
{
something
}
construction 2
cost 600
settlement_min town
upgrades
{
b2
b2a
}
}
b2 requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, }
{
capability
{
something
}
construction 2
cost 600
settlement_min town
upgrades
{
b3
}
}
b2a requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, }
{
capability
{
something
}
construction 2
cost 600
settlement_min town
upgrades
{
b3a
}
}

etc....

Teleklos Archelaou
01-11-2007, 05:09
Yeah, that's entirely possible. If you only have one path open to some factions but not all it can cause problems. None you can't get around, but if you get error messages, sometimes you have to add a "and not..." into the requirement lines (include a false hidden resource you don't put in any province, like this: and not hidden_resource not_here). That will allow paths of building complexes to split off for different factions.

Dol Guldur
01-11-2007, 10:47
For more information see Black Crow's initial investigation into this (again, this is linked in the EDB Guide under 'Building Trees') - here's the direct link to the thread: https://forums.totalwar.org/vb/showthread.php?t=56549

Squid
01-11-2007, 23:11
Thanks, much appreciated.