I wanna confirm some guesses: In 'presets' file we have:
findproperty QName(PackageNamespace(""), "town_presets") pushstring "name" pushshort 552 #a lot of other another things here and #near the end of the characterization of the #town we have the dominant faction info (right?) pushstring "faction" pushbyte 18
We have also in this file,
findproperty QName(PackageNamespace(""), "faction_names") pushbyte 3 pushshort 2189 # 1 pushshort 2190 # 2 pushshort 2191 # 3 pushshort 2192 # 4 pushshort 2193 # 5 pushshort 1421 # 6 pushshort 2854 # 7 pushshort 2856 # 8 pushshort 3172 # 9 pushshort 3173 # 10 pushshort 3547 # 11 pushshort 3548 # 12 pushshort 4253 # 13 pushshort 4254 # 14 pushshort 4267 # 15 pushshort 4272 # 16 pushshort 5655 # 17 pushshort 5955 # 18 pushshort 6115 # 19 pushshort 6376 # 20 pushshort 6656 # 21 pushshort 6794 # 22 pushshort 6793 # 23 newarray 24 newarray 1 setproperty QName(PackageNamespace(""), "faction_names")
My guess is that the number of "faction" in town characterization is the number of 'pushshort' in this list.
Example:
pushstring "name" pushshort 5632 # ........ pushstring "faction" pushbyte 5
So I conclude the faction dominant is '2193' that is, 'Travelers'. In the same way,
pushstring "name" pushshort 2272
Is New Serino,
pushstring "faction" pushbyte 8
And the dominant faction is '2856' that is, 'Alkubra Police'.
Is this explanation correct?