Jump to content
tom.tucka

Config.cpp line error

Recommended Posts

Hello All,

 

I'm not the best with configs and I'm trying to learn but I have this error when packing my pbo:

 

MakePbo: Building entries:...
config.cpp In File CSQN_Equipment\config.cpp: Line 5 Expected Semicolon (or eol)

 

Below Is my config.cpp Could someone help me with this as I see no missing;

 


class CfgPatches {

	class CSQN_Insignia_Units {
		units = {};
		weapons = {};
		requiredVersion = 1;
		requiredAddons = {"A3_Weapons_F", "A3_Characters_F_BLUFOR"};
	};
};

class UniformSlotInfo {
	slotType = 0;
	linkProxy = "-";
};

class CfgUnitInsignia {

	class R10A {
		displayName = "C/S Patch R10A";
		author = "C Squadron";
		texture = "CSQN_Insignia\data\cs\N10R.paa";
	};
};

 

Thanks In advance 

Tom

Share this post


Link to post
Share on other sites

Try editing you CfgPatches to this:

 

class CfgPatches {

	class CSQN_Insignia_Units {
		requiredVersion = 1;
		requiredAddons[] = {"A3_Weapons_F", "A3_Characters_F_BLUFOR"};
		units[] = {};
		weapons[] = {};
	};
};

 

  • Like 1

Share this post


Link to post
Share on other sites
2 hours ago, flax_ said:

Try editing you CfgPatches to this:

 


class CfgPatches {

	class CSQN_Insignia_Units {
		requiredVersion = 1;
		requiredAddons[] = {"A3_Weapons_F", "A3_Characters_F_BLUFOR"};
		units[] = {};
		weapons[] = {};
	};
};

 

 

Worked Perfectly, Thanks Flax

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

×