Jump to content

Recommended Posts

I`m try to make varsuk retexture but have problem when launch game.  Can someione help me?

ec3d9f31e916.jpg

 

my config

https://pastebin.com/Lcb6nFGZ

class CfgPatches {

	class Sem_eagle {
		author = "sem";
		units[] = {"Sem_eagle1"};
		weapons[] = {};
		requiredVersion[] = 0.100000;
		requiredAddons[] = {"A3_Characters_F", "A3_Characters_F_Beta", "A3_Weapons_F", "A3_Static_F", "A3_Air_F", "A3_Data_F", "A3_Armor_F", "A3_Armor_F_APC_Wheeled_03", "A3_Soft_F", "A3_Modules_F", "A3_Modules_F_Curator", "A3_Armor_F_EPB_APC_tracked_03", "A3_Air_F_Exp", "A3_armor_f_exp", "A3_soft_f_exp", "A3_data_f_exp", "A3_static_f_exp", "A3_weapons_f_exp"};
	};
};

class cfgVehicles {
	/*extern*/ class O_MBT_02_cannon_F;

class Sem_eagle1: class O_MBT_02_cannon_F; {
		author = "Sem";
		_generalMacro = "Black Eagle";
		scope = 2;
		scopeCurator = 2;
		side = 0;
		vehicleClass = "Armored";
		faction = "OPF_F";
		displayName = "Black Eagle";
		crew = "O_T_Crew_F";
		hiddenSelectionsTextures[]={"black\data\T_100_body_1.paa", "black\data\T_100_turret_2.paa", "black\data\T_100_extra_3.paa"};
		typicalCargo = {"O_T_Crew_F", "O_T_Crew_F", "O_T_Crew_F"};
	};
};

 

Share this post


Link to post
Share on other sites

Line 15, there shound't be ; or class

 

Spoiler

 


class CfgPatches {

	class Sem_eagle {
		author = "sem";
		units[] = {"Sem_eagle1"};
		weapons[] = {};
		requiredVersion[] = 0.100000;
		requiredAddons[] = {"A3_Characters_F", "A3_Characters_F_Beta", "A3_Weapons_F", "A3_Static_F", "A3_Air_F", "A3_Data_F", "A3_Armor_F", "A3_Armor_F_APC_Wheeled_03", "A3_Soft_F", "A3_Modules_F", "A3_Modules_F_Curator", "A3_Armor_F_EPB_APC_tracked_03", "A3_Air_F_Exp", "A3_armor_f_exp", "A3_soft_f_exp", "A3_data_f_exp", "A3_static_f_exp", "A3_weapons_f_exp"};
	};
};

class cfgVehicles {
	/*extern*/ class O_MBT_02_cannon_F;

class Sem_eagle1: O_MBT_02_cannon_F {
		author = "Sem";
		_generalMacro = "Black Eagle";
		scope = 2;
		scopeCurator = 2;
		side = 0;
		vehicleClass = "Armored";
		faction = "OPF_F";
		displayName = "Black Eagle";
		crew = "O_T_Crew_F";
		hiddenSelectionsTextures[]={"black\data\T_100_body_1.paa", "black\data\T_100_turret_2.paa", "black\data\T_100_extra_3.paa"};
		typicalCargo = {"O_T_Crew_F", "O_T_Crew_F", "O_T_Crew_F"};
	};
};

 

 

 

Share this post


Link to post
Share on other sites
54 minutes ago, Bnae said:

Line 15, there shound't be ; or class

Like this ?

class cfgVehicles {
	/*extern*/ class O_MBT_02_cannon_F;

		O_MBT_02_cannon_F {
		author = "Sem";
		_generalMacro = "Black Eagle";

I get same error...

Share this post


Link to post
Share on other sites

requiredVersion is not an array. Remove the [ ] and it should work. 

 

so it should look like this : requiredVersion = some number

 

instead of requiredVersion[ ] = some number 

Share this post


Link to post
Share on other sites

instead of requiredVersion[ ] = some number .

 

done.

Now I`m got error named - Some input after end of file

Share this post


Link to post
Share on other sites

I think you have an extra bracket at the end but it's hard to tell. Next time post a link to pastebin. It's a lot easier to read configs when posted ther

also what are you using to pack your project?

Edited by m1lkm8n

Share this post


Link to post
Share on other sites
3 minutes ago, m1lkm8n said:

I think you have an extra bracket at the end but it's hard to tell. Next time post a link to pastebin. It's a lot easier to read configs when posted there

https://pastebin.com/Lcb6nFGZ

 

please if you have time tell me what is wrong

 

I`m using pbo manager to pack my mods

Share this post


Link to post
Share on other sites

with addon builder I have this error

7d28554c405a.jpg

Share this post


Link to post
Share on other sites

Bnae and m1lkm8n   big thank you.  this problem solved

  • Like 1

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

×