Re: Basic modding question
Moved to modding questions.
Generally, I prefer editing the file by hand. There is BrandomM's toolset (http://www.twcenter.net/forums/forumdisplay.php?f=304) but I'm not sure how far-developed the tool is yet.
Re: Basic modding question
I also prefer editing by hand.
As for how to achieve what you are looking for:
You want to be editing 2 files:
export_descr_buildings.txt (needs to be unpacked)
descr_regions.txt
In the regions file, you want to create 2 new resources: scot and outremer which you add to any region to which it applies in that file. If a given region does not have any resource (listed as "none") delete "none" and put the resource name there instead.
Now, in the buildings file you want to declare both resources at the top (where the other resources are declared).
Then you want to look at the various buildings, which should be obvious.
Say you want to add Galloglaich to english armoury.
Code:
recruit_pool "Heavy Billmen" 1 0.7 6 0 requires factions { england, }
Duplicate that line of code and modify it to
Code:
recruit_pool "Galloglaich Mercs" 1 0.7 6 0 requires factions { england, } and hidden_resource scot
You can do the same basically for the other units you want to make recruitable, keeping that format in mind.
I do not quite remember whether you also need to add ownership lines to the export_descr_unit file or not, but I would doubt it since you are only adding mercenaries to the recruitable units. You do need that file to enter the type of the unit though (which is its internal name, i.e. Galloglaich Mercs)
Re: Basic modding question
Thanks, with this I should be able and get the stuff I want. I'm unpacking everything right now, I was searching crazy for the buildings file before.
Looking forward to a St John army in outremer. though the red and white shields from both sergeants as foot knights make me wish I took the templars instead...
Re: Basic modding question
I'm experimenting with the modding, so far everything works good. Just I can't find the mercaneries? could anyone point me where to find them. That would be great
Thanks
Kulgan