Jump to content
Sign in to follow this  
Famousbasic13

Arma 3 How to change capacity of Vest/Backpacks?

Recommended Posts

Hi there,

I was wondering if anyone knows how to change the capacity of a Vest (That is from a mod). So for e.g - It can carry 2 Repair Kits instead of 1...?

Regards

T

Share this post


Link to post
Share on other sites

When you define your vest look for the following code:

	class YourClassname: BaseClassname
{
	author = "You";
	scope = 2;
	picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa";
	displayName = "My cool vest";
	model = "\A3\Characters_F\BLUFOR\equip_b_vest02";
	class ItemInfo: ItemInfo
	{
		uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
[color="#FF0000"][b]			containerClass = "Supply140";[/b][/color]
		mass = whatever;
		armor = whatever;
		passThrough = likeacurry;
	};
};

That defines how much the vest can carry. Values go from 20 to 180 (I think) in increments of 10 Use the link that Eggi posted.

Edited by Jackal326

Share this post


Link to post
Share on other sites

This page may help:

Nvm...Jackal beat me to it :p.

Share this post


Link to post
Share on other sites
When you define your vest look for the following code:

	class YourClassname: BaseClassname
{
	author = "You";
	scope = 2;
	picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa";
	displayName = "My cool vest";
	model = "\A3\Characters_F\BLUFOR\equip_b_vest02";
	class ItemInfo: ItemInfo
	{
		uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
[color="#FF0000"][b]			containerClass = "Supply140";[/b][/color]
		mass = whatever;
		armor = whatever;
		passThrough = likeacurry;
	};
};

That defines how much the vest can carry. Values go from 20 to 180 (I think) in increments of 10 Use the link that Eggi posted.

Where can I fine this? In the config.bin? Thanks for the link aswell Eggi!

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  

×