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
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';";
};
};