Hi guys and girls im trying to make custom flags for my server but i can't get the textures to load i just get white flags.
my file structure is -
Vikings_Flags/data/South_Africa_co.paa
/config.cpp
My config.cpp is
class CfgPatches
{
class Vikings_Flags
{
units[]=
{
};
weapons[]={};
requiredVersion=0.1;
requiredAddons[]=
{
"DZ_Gear_Containers",
"DZ_Gear_Camping",
"DZ_Data"
};
};
};
class cfgVehicles
{
class Flag_Base;
class Flag_South_Africa: Flag_Base
{
scope=2;
hiddenSelectionsTextures[]=
{
"\Vikings_Flags\data\South_Africa_co.paa"
};
};
};
I've tried messing around with the texture path but i just can't get it to load, what am i doing wrong?