From 1795b03d240049b89880e0f9181feebc863ce9b7 Mon Sep 17 00:00:00 2001 From: A Man Date: Mon, 15 Aug 2016 21:03:26 +0200 Subject: [PATCH] Adding missing items Adding missing items when using dayz_knifeDulling = true; anddayz_matchboxCount = true; and ItemFishingPole --- .../R3F_Realism/R3F_Weight/Weapons/Tools.hpp | 56 ++++++++++++++++++- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Weapons/Tools.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Weapons/Tools.hpp index 7608ad053..934ca418a 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Weapons/Tools.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Weapons/Tools.hpp @@ -1,4 +1,4 @@ -/**************************************************************************** +/**************************************************************************** Copyright (C) 2010 Team ~R3F~ This program is free software under the terms of the GNU General Public License version 3. You should have received a copy of the GNU General Public License @@ -76,6 +76,30 @@ class ItemKnife { weight = 0.1; }; +class ItemKnife5 +{ + weight = 0.1; +}; +class ItemKnife4 +{ + weight = 0.1; +}; +class ItemKnife3 +{ + weight = 0.1; +}; +class ItemKnife2 +{ + weight = 0.1; +}; +class ItemKnife1 +{ + weight = 0.1; +}; +class ItemKnifeBlunt +{ + weight = 0.1; +}; class MeleeCrowbar { weight = 1; @@ -125,9 +149,33 @@ class ItemSledge weight = 9.1; }; class ItemMatchbox +{ + weight = 0.007; +}; +class Item5Matchbox +{ + weight = 0.006; +}; +class Item4Matchbox { weight = 0.005; }; +class Item3Matchbox +{ + weight = 0.004; +}; +class Item2Matchbox +{ + weight = 0.003; +}; +class Item1Matchbox +{ + weight = 0.002; +}; +class ItemMatchboxEmpty +{ + weight = 0.001; +}; class ItemToolbox { weight = 1; @@ -155,4 +203,8 @@ class ItemShovel class ItemShovelBroken { weight = 1; -}; \ No newline at end of file +}; +class ItemFishingPole +{ + weight = 1; +};