Jump to content
KokaKolaA3

[SOLVED] Missing "{" in config.cpp?!??

Recommended Posts

I get this error message when i try to pack my addon:

 

http://imgur.com/a/rnKbL

 

This is my config:

class CfgPatches
{
	class KKA3_ACE_Extension_Anim
	{
		name = "ACE Extension (Animations)";
		author = "KokaKolaA3";
		url = "http://steamcommunity.com/id/kokakolaa3";
 
		requiredVersion = 1.60; 
		requiredAddons[] = {"A3_Functions_F"};
		units[] = {};
		weapons[] = {};
	};
};

class CfgVehicles 
{
    class Man;
    class CAManBase: Man 
	{
        class ACE_SelfActions 
		{
			class kka3_anim 
			{
			displayName = "Animations";
			icon = "\KKA3_ACE_Extension_Anim\data\ui_A.paa";
			
				class kka3_poses
				displayName = "Poses";
				icon = "\KKA3_ACE_Extension_Anim\data\ui_A.paa";
				{
					#include "animation_config_poses.hpp"
				};
				
				class kka3_actions
				displayName = "Actions";
				icon = "\KKA3_ACE_Extension_Anim\data\ui_A.paa";
				{
					#include "animation_config_actions.hpp"
				};
			};
		};
	};
};

I followed this tutorial: http://ace3mod.com/wiki/framework/interactionMenu-framework.html#advanced-example

 

I checked for a missing "{" or "}" or ";" but i can't find the failure even if the error message telling me its in line 28

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

×