Unit formations

Faustaud

Chieftain
Joined
Jun 25, 2012
Messages
16
Location
USA
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';
 
Back
Top Bottom