Jump to content

Recommended Posts

Hi,

I want to know, what's the classname for each factions of the new DLC S.O.G Preairie for edits missions?

In the game base I know the main factions BLU_F, OPF_F, CIV_F, but don't for this DLC

somebody can help me with this?

Share this post


Link to post
Share on other sites

I loaded the S.O.G. Prairie fire - compatibility data for non-owners , free but limited: you can't use the map and you can't play as unit of this DLC, but you can add AIs on Unsung map for example.

So, you can also check the cfgGroups in config viewer.

Any way, if you want their actual faction class names:

 

West : "VN_MACV"

East: "VN_PAVN", "VN_VC"

Indep: "VN_ARVN"

Civilian: "VN_VIET"

 

keep in mind ,that's the classes working in configFile chain for cfgGroups. Example:

configfile >> "CfgGroups" >> "East" >> "VN_PAVN" >> "vn_o_group_men_nva_marine"

 

Not the name of the assets list in editor (PAVN) :

getText (configfile >> "CfgGroups" >> "East" >> "VN_PAVN" >> "name") //  "PAVN";

 

Not the name returned by faction command:

faction aUnit  // "O_PAVN"

 

  • Like 4

Share this post


Link to post
Share on other sites
22 minutes ago, pierremgi said:

I loaded the S.O.G. Prairie fire - compatibility data for non-owners , free but limited: you can't use the map and you can't play as unit of this DLC, but you can add AIs on Unsung map for example.

So, you can also check the cfgGroups in config viewer.

Any way, if you want their actual faction class names:

 

West : "VN_MACV"

East: "VN_PAVN", "VN_VC"

Indep: "VN_ARVN"

Civilian: "VN_VIET"

 

keep in mind ,that's the classes working in configFile chain for cfgGroups. Example:

configfile >> "CfgGroups" >> "East" >> "VN_PAVN" >> "vn_o_group_men_nva_marine"

 

Not the name of the assets list in editor (PAVN) :

getText (configfile >> "CfgGroups" >> "East" >> "VN_PAVN" >> "name") //  "PAVN";

 

Not the name returned by faction command:

faction aUnit  // "O_PAVN"

 

 

Thanks a lot for you answer:😄

 

 

I thought this was:

 

bluefor "B_MACV"

opfor: "O_PAVN"

independent: "O_VC"

Civilian: "C_VIET"

 

I'll take your answer.
 

Share this post


Link to post
Share on other sites

Btw, if modders of Prairie fire could change the "Civ" side class  in cfgGroups, for "Civilian" as any other Vanilla/ popular mods, that could help for scripting!

 

configfile >> "CfgGroups" >> "Civ" >> "VN_VIET" >> "vn_c_group_men"   // not easy to manage in scripts

should gain to be:

configfile >> "CfgGroups" >> "Civilian" >> "VN_VIET" >> "vn_c_group_men"  // normalized with Arma vanilla and many mods. So the side is easily usable in scripts

 

Thanks.

Share this post


Link to post
Share on other sites

Anyone know the vehicle classname for the SOG vehicles,

the helicopters in particular.

The  Script for Rearm, Refuel, Repair, that has, & does work with Vanilla, & other mods, wont work with SOG,

 

_vehType = getText(configFile>>"CfgVehicles">>typeOf _veh>>"DisplayName");     "helicopter" or "plane" using  SOG helicopters or planes, are not recognized?

 

Would adding VN_VIET in there somewhere work?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×