Advertisement
skotracker

Capacity of Vest and Backpacks

Nov 17th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.64 KB | None | 0 0
  1. // Define capacity of vests
  2. // https://forums.bistudio.com/forums/topic/178949-arma-3-how-to-change-capacity-of-vestbackpacks/
  3. // https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EMPTY
  4.  
  5. class YourClassname: BaseClassname
  6. {
  7.     author = "You";
  8.     scope = 2;
  9.     picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa";
  10.     displayName = "My cool vest";
  11.     model = "\A3\Characters_F\BLUFOR\equip_b_vest02";
  12.     class ItemInfo: ItemInfo
  13.     {
  14.         uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest02.p3d";
  15. [color="#FF0000"][b]            containerClass = "Supply140";[/b][/color]
  16.         mass = whatever;
  17.         armor = whatever;
  18.         passThrough = likeacurry;
  19.     };
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement