Jump to content
Sign in to follow this  
EvilDutch

Faction UI Icon, where is it?

Recommended Posts

Sup guys,

I'm searching for the part of script where i can give my addon a faction icon, like the NATO forces have this NATO flag/icon. And i want to give my faction a MOPP4 flag/icon. I have been searching true a lot of scripts from the game itself and although i found some awesome script i might use in the future i haven't found the part i basically need to finish up my beta version of the mod :rolleyes:

Any modders that found/have it in there mod that can share the info/codes with me :confused:.

Greetz

Share this post


Link to post
Share on other sites

Here is an example.

//********************************************
//*****		Factions                     *****
//********************************************
class cfgFactionClasses
{
class Surph_B_Clowns
{
	displayName = "Clowns";
	priority = 2;
	side = 1;
	icon = "\surph_a3_clowns\data\cfgFactionClasses_Clown_BLU_ca.paa";
};

class Surph_O_Clowns
{
	displayName = "Clowns";
	priority = 2;
	side = 0;
	icon = "\surph_a3_clowns\data\cfgFactionClasses_Clown_OPF_ca.paa";
};
class Surph_I_Clowns
{
	displayName = "Clowns";
	priority = 2;
	side = 2;
	icon = "\surph_a3_clowns\data\cfgFactionClasses_Clown_IND_ca.paa";
};
};

Share this post


Link to post
Share on other sites

Oh thanks dude!.. What 0x0 should i use for the icon ?

EDIT: I got it, i used 64x64.

Edited by EvilDutch

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
Sign in to follow this  

×