Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
  • 0
Sign in to follow this  
Taipan

Создать слот

Здравствуйте. Пытаюсь сделать карман для бронежилета. Столкнулся с проблемой, что не получается создать новый слот, под этот карман. Как мне это сделать?

class CfgPatches
{
	class DZ_Characters_Backpacks
	{
		units[]={};
		weapons[]={};
		requiredVersion=0.1;
		requiredAddons[]=
		{
			"DZ_Characters"
		};
	};
};
class cfgVehicles
{
	class Clothing_Base;
	class CourierBag;
	class PlateCarrierPouches;
	class Clothing: Clothing_Base
	{
	};
	class Pouch1: PlateCarrierPouches
	{
		scope=2;
		displayName="Подсумок";
		descriptionShort="Подвешивается на некоторые жилеты и ремни";
		model="\Pouch\pouch_1.p3d";
		inventorySlot[]=
		{
			"Pouch1"
		};
		attachments[]=
		{
			"Magazine"
		};
		itemInfo[]=
		{
			"Clothing",
			"Back"
		};
		rotationFlags=16;
		itemSize[]={1,2};
		itemsCargoSize[]={1,2};
		weight=200;
		varWetMax=0.050000001;
		heatIsolation=1;
		visibilityModifier=0.69999999;
		repairableWithKits[]={5,2};
		repairCosts[]={30,25};
		soundAttType="Small";
		hiddenSelections[]=
		{
			"camo1"
		};
		hiddenSelectionsTextures[]=
		{
			"\Pouch\data\Pouch.paa"
		};
		class ClothingTypes
		{
			male="\Pouch\pouch_1.p3d";
			female="\Pouch\pouch_1.p3d";
		};
		class DamageSystem
		{
			class GlobalHealth
			{
				class Health
				{
					hitpoints=300;
					healthLevels[]=
					{
						
						{
							1,
							
							{
								"DZ\Characters\backpacks\data\ImpCourierBag.rvmat"
							}
						},
						
						{
							0.69999999,
							
							{
								"DZ\Characters\backpacks\data\ImpCourierBag.rvmat"
							}
						},
						
						{
							0.5,
							
							{
								"DZ\Characters\backpacks\data\ImpCourierBag_damage.rvmat"
							}
						},
						
						{
							0.30000001,
							
							{
								"DZ\Characters\backpacks\data\ImpCourierBag_damage.rvmat"
							}
						},
						
						{
							0,
							
							{
								"DZ\Characters\backpacks\data\ImpCourierBag_destruct.rvmat"
							}
						}
					};
				};
			};
		};
		class AnimEvents
		{
			class SoundWeapon
			{
				class pickUpItem_Light
				{
					soundSet="pickUpCourierBag_Light_SoundSet";
					id=796;
				};
				class pickUpItem
				{
					soundSet="pickUpCourierBag_SoundSet";
					id=797;
				};
				class drop
				{
					soundset="taloonbag_drop_SoundSet";
					id=898;
				};
			};
		};
	};
};
class Slot_Pouch
	{
		name = "Pouch1";
		displayName = "Pouch1";
		ghostIcon = "set:dayz_inventory image:vestpouches";
	};
	class CfgNonAIVehicles
{
	class ProxyAttachment;
	class ProxyPouch_1: ProxyAttachment
	{
		scope = 2;
		inventorySlot[] = {"Pouch1"};
		model = "\Pouch\pouch_1.p3d";
	};
};

 

Share this post


Link to post
Share on other sites

6 answers to this question

Recommended Posts

  • 1
Только что, Taipan сказал:

Теперь вот так выдаетimage.png.c488b3b4a5648f711fed24c190cc8898.png

Там ведь эта скобка ни к чему не привязывается...

В конфиг в scripts впиши создание слота. То есть вырежи из этого конфига и впиши в config.cpp в папке scripts.  А еще ты не прописал класс

class CfgSlots
{


Вот так.

class CfgSlots
{
	class Slot_Pouch
	{
		name = "Pouch1";
		displayName = "Pouch1";
		ghostIcon = "set:dayz_inventory image:vestpouches";
	};
};

 

Share this post


Link to post
Share on other sites



  • 0

Ты скобку потерял)
после 145 строки впиши

};
class Slot_Pouch
    {
        name = "Pouch1";
        displayName = "Pouch1";
        ghostIcon = "set:dayz_inventory image:vestpouches";
    };
};

Вот так у тебя должно получиться.

Share this post


Link to post
Share on other sites
  • 0

Теперь вот так выдаетimage.png.c488b3b4a5648f711fed24c190cc8898.png

Там ведь эта скобка ни к чему не привязывается...

Edited by Taipan (see edit history)

Share this post


Link to post
Share on other sites
  • 0
10 минут назад, bones сказал:

В конфиг в scripts впиши создание слота. То есть вырежи из этого конфига и впиши в config.cpp в папке scripts.  А еще ты не прописал класс

class CfgSlots {


class CfgSlots
{


Вот так.

class CfgSlots { class Slot_Pouch { name = "Pouch1"; displayName = "Pouch1"; ghostIcon = "set:dayz_inventory image:vestpouches"; }; };


class CfgSlots
{
	class Slot_Pouch
	{
		name = "Pouch1";
		displayName = "Pouch1";
		ghostIcon = "set:dayz_inventory image:vestpouches";
	};
};

 

Спасибо, получилось

Share this post


Link to post
Share on other sites
  • 0
Только что, Taipan сказал:

Спасибо, получилось

Всегда пожалуйста.

Share this post


Link to post
Share on other sites
  • 0
01.12.2021 в 17:24, Taipan сказал:

Спасибо, получилось

А иконка кармашка осталась?

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.