Helo. I'm new on this site, but currently I am so desperate that I realized I must post my problem, so that maybe the more experienced people can help me. So, I am trying to change the picture of a weapon (RPG7V) so it would look different in the inventory/crates. This is my config right now :
class CfgPatches
{
class better_rpg
{
units[] = {};
weapons[] = {"RPG7V_Gold"};
requiredAddons[] = {"CAWeapons"};
};
};
class CfgWeapons
{
class Launcher;
class LauncherCore;
class Default;
class RPG7V : Launcher{};
class RPG7V_Gold : RPG7V
{
displayName = "RPG7 Gold";
picture = "x\jey\addons\better_rpg\w_rpg7_ca.paa";
descriptionShort = "Gold RPG7";
};
};
So as you can see this is a very basic config. The problem is , when I spawn down the item an error appears : "Picture x\jey\addons\better_rpg\w_rpg7_ca.paa not found"
What I tried is :
-Changing the picture route / Didn't work
-Changing the addon name / Didn't work
-Using $pboprefix$ / Didn't work
-Adding/removing "\" / Didn't work
If anyone has any idea I'd be MOST Thankful!