Is it possible to take an existing model and make a new formation for a new unit? For example take the mohawk warrior model and use it to make a 5 man formation?
yes, formation type is in ArtDefine_UnitInfos table, number of member in formation is defined in ArtDefine_UnitInfoMemberInfos table.
Example in SQL:
Code:
UPDATE ArtDefine_UnitInfoMemberInfos SET NumMembers = 16 WHERE UnitMemberInfoType = 'ART_DEF_UNIT_MEMBER_U_SAXON_HUSCARL';
UPDATE ArtDefine_UnitInfos SET Formation = 'UnFormed' WHERE Type = 'ART_DEF_UNIT_U_SAXON_HUSCARL';
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.