Jump to content
Dj Rolnik

Remove DLC dependency from config

Recommended Posts

Hey,

 

I'm sorry, this might be something absolutely trivial, but for the love of me, I cannot get what I'm doing wrong.

 

I am trying to add an object to the game and it keeps showing as if it was from a DLC.

https://i.ibb.co/54z0G5W/Bez-tytu-u.png

class CfgPatches 
{
	class PDA
	{
		units[] = {};
		weapons[] = {};
		requiredVersion = 1.020000;
		requiredAddons[] = {};
        author[]=
        {
            "Dj Rolnik"
        };
	};
};

class CfgWeapons
{
	class ItemCore;
	class CBA_MiscItem_ItemInfo;
	class ACE_ItemCore;
	class pda_1 : ACE_ItemCore
	{
		scope = 2;
		displayName = "PDA";
		dlc = "";
		descriptionShort = "Whatever text";
		picture = "";
		model = "";
		
		class ItemInfo: CBA_MiscItem_ItemInfo 
		{
			mass = 1;
		};
    };
};

 

Can someone explain to me what I'm doing wrong?

 

Thanks,

Adam

Share this post


Link to post
Share on other sites

Ok, can be closed. All it required was giving it a path to a model to work with. Sorry about that.

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

×