Search the Community
Showing results for tags 'vehicleclass'.
Found 1 result
-
Custom faction vehicle classes being overwritten?
hnchmc posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Hey all, sorry if this is has already been answered, I've searched the internet and can't find an exact remedy. If there is already a post answering this, please just point me to it. Sorry then. Anyways, so my problem is with the custom vehicle classes being overwritten. What I mean by this is that after I make a custom faction, and custom vehicle Classes, the faction appears in game yet the vehicle Class names do not. Instead, they are replaced by the vanilla "planes", "cars", "men", etc for the type of unit respectively. For example: class CfgFactionClasses { class test_fac { displayName = "My Test Fac"; author = "hnchmc"; flag = "\a3\Data_f\Flags\flag_quontrol_co.paa"; icon = "\a3\Data_f\Flags\flag_quontrol_co.paa"; side = 2; }; }; class CfgVehicleClasses { class test_fac_vehicleclass_testplanes { displayName = "Test planes"; }; class test_fac_vehicleclass_testcars { displayName = "Test cars"; }; }; Then, when applied to vehicles using side = 2; faction = test_fac; vehicleClass = "test_fac_vehicleclass_testplanes"; in game it reverts back to the vanilla vehicle classes, where they're found under "planes" or "cars" Maybe I'm missing something? Anything helps