So I've been trying to create my own custom faction but to no avail. I tried using BroBeans' config.cpp and I also used someone's off of YouTube. The only problem with using BroBeans' or the other one off of YouTube is that I get ingame errors without a game crash. I'm OCD about things so having ingame errors drives me nuts.
After trial and error I decided to use the
ARMA3 wiki. I can't get past launch without getting startup errors and then a crash. I'm not sure what to do. I'll post the error down below along with my config.cpp.
Any help would be greatly appreciated!
class CfgPatches
{
class A3_MyAddon
{
units[] = {"1MID_Infantryman"};
weapons[] = {""};
requiredVersion = 0.1;
requiredAddons[] = {"A3_Characters_F"};
};
};
class cfgFactionClasses
{
class Custom_Faction
{
displayName = "1.MID";
priority = 1;
side = 1;
};
};
class CfgUnitInsignia
{
class 1MID_Insignia
{
author = "xSCAR45";
displayName = "1.MID Patch";
texture = "\1MID\UI\1MID_patch_co.paa";
};
};
class cfgVehicles
{
class B_Soldier_base_F;
class B_soldier_new: B_Soldier_base_F
{
author = "xSCAR45";
scope = 2;
scopeCurator = 2;
scopeArsenal = 2;
identityTypes[] = {"LanguageENG_F","Head_NATO","G_NATO_default"};
displayName = "Infantryman";
model = "\A3\characters_f_beta\INDEP\ia_soldier_01.p3d";
uniformClass = "-";
hiddenSelections[] = {"Camo","Insignia"};
hiddenSelectionsTextures[] = {"\1MID\Data\1MID_default_camo.paa"};
weapons[] = {"arifle_SPAR_01_blk_F","hgun_ACPC2_F","Throw","Put"};
respawnWeapons[] = {"arifle_SPAR_01_blk_F","hgun_ACPC2_F","Throw","Put"}; .
magazines[] = {"30Rnd_556x45_Stanag_Tracer_Red","9Rnd_45ACP_Mag","HandGrenade","HandGrenade","SmokeShellYellow","SmokeShellYellow","B_IR_Grenade"};
respawnMagazines[] = {"30Rnd_556x45_Stanag_Tracer_Red","9Rnd_45ACP_Mag","HandGrenade","HandGrenade","SmokeShellYellow","SmokeShellYellow","B_IR_Grenade"};
linkedItems[] = {"H_HelmetSpecB","V_PlateCarrier1_rgr","ItemMap","ItemCompass","ItemWatch","ItemRadio","ItemGPS"};
respawnLinkedItems[] = {"H_HelmetSpecB","V_PlateCarrier1_rgr","ItemMap","ItemCompass","ItemWatch","ItemRadio","ItemGPS"};
};
};