Increasing Backpack size

shangreer

New Member
Hi All.

I am a n00b so I apologize in advance if this is a dumb question. :)

I am trying to increase the backpack size on my own private Open Dayz server. I have edited the bags.hpp file and increased the Coyote backpack size as shown below. Then I repacked the PBO file and put it on the server and client, restarted the server and connected. The bag size does not change...it is still limited to 24 slots. I assume I need to make another change somewhere else but, after hours of searching, I am having no luck finding out where.

Can anyone help?

Thanks in advance.

Shan

Code:
class DZ_Backpack_EP1: Bag_Base_EP1
{
	scope = 2;
	displayName = $STR_BACKPACK_NAME_COYOTE;
	descriptionShort = $STR_BACKPACK_DESC_COYOTE;
	picture = "\ca\weapons_e\data\icons\backpack_US_CA.paa";
	icon = "\ca\weapons_e\data\icons\mapIcon_backpack_CA.paa";
	mapsize = 2;
	model = "\ca\weapons_e\AmmoBoxes\backpack_us.p3d";
	transportMaxWeapons = 6;
	transportMaxMagazines = 60;
	class eventHandlers
	{
		init="[(_this select 0),'CfgVehicles','DZ_Backpack_EP1'] execVM '\z\addons\dayz_code\init\object_BackpackAction.sqf';";
	};
};
 
The bags.hpp is a clientside file and theres no way of editing it from the server side. This means you would need to edit your client files, edit your servers mod files, and then have everyone else download your copy of your new modded client files to play on your server.
 
Ya, I made the edits to the client PBOs and put the PBO file on both the client and the server systems and it still did not change the bag size. Not sure why it did not work if bags.hpp is the only thing I have to edit. Do I need to edit the Dayz Server PBO as well?

Shan
 
Back
Top