diff --git a/SQF/dayz_code/Configs/CfgMagazines/Items/Bulk.hpp b/SQF/dayz_code/Configs/CfgMagazines/Items/Bulk.hpp index 3b5570a45..156028843 100644 --- a/SQF/dayz_code/Configs/CfgMagazines/Items/Bulk.hpp +++ b/SQF/dayz_code/Configs/CfgMagazines/Items/Bulk.hpp @@ -34,7 +34,6 @@ class bulk_empty: bulk output[] = {{"bulk_ItemSodaPepsi",1}}; input[] = {{"bulk_empty",1},{"ItemSodaPepsi",6}}; }; - class Crafting2 { text = $STR_EPOCH_PLAYER_223; @@ -71,6 +70,15 @@ class bulk_empty: bulk output[] = {{"bulk_FoodbaconCooked",1}}; input[] = {{"bulk_empty",1},{"FoodbaconCooked",6}}; }; + class Crafting6 + { + text = $STR_EPOCH_PLAYER_332; + script = ";['Crafting6','CfgMagazines', _id] spawn player_craftItem;"; + neednearby[] = {}; + requiretools[] = {"ItemToolbox"}; + output[] = {{"bulk_ItemSandbagHalf",1}}; + input[] = {{"bulk_empty",1},{"ItemSandbag",6}}; + }; }; }; @@ -414,7 +422,6 @@ class bulk_ItemSandbag: bulk }; }; }; - class bulk_ItemTankTrapHalf: bulk { displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_HALF; @@ -454,7 +461,6 @@ class bulk_ItemTankTrap: bulk }; }; }; - class bulk_ItemWireHalf: bulk { displayName = $STR_EPOCH_BULK_DISP_WIREKIT_HALF; @@ -494,7 +500,6 @@ class bulk_ItemWire: bulk }; }; }; - class bulk_PartGenericHalf: bulk { displayName = $STR_EPOCH_BULK_DISP_GENERIC_HALF; @@ -959,6 +964,134 @@ class bulk_ItemKiloTobaccoFull: bulk { }; }; +//Animal Craftables +class bulk_ItemAnimalSkinFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemAnimalSkin_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemAnimalSkin_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemAnimalSkin",12,"magazine"}; + }; + }; +}; +class bulk_ItemSkinRabbitFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemSkinRabbit_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemSkinRabbit_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemSkinRabbit",12,"magazine"}; + }; + }; +}; +class bulk_ItemSkinCowFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemSkinCow_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemSkinCow_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemSkinCow",12,"magazine"}; + }; + }; +}; +class bulk_ItemSkinGoatFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemSkinGoat_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemSkinGoat_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemSkinGoat",12,"magazine"}; + }; + }; +}; +class bulk_ItemSkinBoarFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemSkinBoar_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemSkinBoar_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemSkinBoar",12,"magazine"}; + }; + }; +}; +class bulk_ItemSkinDogFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemSkinDog_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemSkinDog_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemSkinDog",12,"magazine"}; + }; + }; +}; +class bulk_ItemSkinSheepFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemSkinSheep_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemSkinSheep_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemSkinSheep",12,"magazine"}; + }; + }; +}; +class bulk_ItemWoolFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemWool_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemWool_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemWool",12,"magazine"}; + }; + }; +}; +class bulk_ItemLeatherFull: bulk { + displayName = $STR_EPOCH_BULK_DISP_ItemLeather_FULL; + descriptionshort = $STR_EPOCH_BULK_DESC_ItemLeather_FULL; + + class ItemActions + { + class CreateMags + { + text = $STR_EPOCH_ACTIONS_OPEN; + script = "spawn player_loadCrate;"; + output[] = {"ItemLeather",12,"magazine"}; + }; + }; +}; + // Ammo class bulk_17Rnd_9x19_glock17: bulk { diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Bulk.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Bulk.hpp index 90a3c2d53..08838ae07 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Bulk.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Bulk.hpp @@ -39,6 +39,70 @@ class bulk_FoodbaconCookedFull weight = 5; }; +class bulk_equip_garlic_bulbFull +{ + weight = 6.2; +}; + +class bulk_FishCookedSeaBassFull +{ + weight = 65; +}; + +class bulk_FishCookedTroutFull +{ + weight = 17; +}; + +class bulk_FishCookedTunaFull +{ + weight = 305; +}; + +class bulk_FoodBeefCookedFull +{ + weight = 8; +}; + +class bulk_FoodCarrotFull +{ + weight = 8; +}; +class bulk_FoodChickenCookedFull +{ + weight = 8; +}; + +class bulk_FoodDogCookedFull +{ + weight = 8; +}; + +class bulk_FoodGoatCookedFull +{ + weight = 8; +}; + +class bulk_FoodMuttonCookedFull +{ + weight = 8; +}; + +class bulk_FoodPotatoRawFull +{ + weight = 8; +}; + +class bulk_FoodPumpkinFull +{ + weight = 41; +}; + +class bulk_FoodRabbitCookedFull +{ + weight = 8; +}; + // Ammo class bulk_17Rnd_9x19_glock17 { @@ -94,4 +158,197 @@ class bulk_PartGeneric class bulk_PartGenericHalf { weight = 30; +}; + +class bulk_ItemSandbagHalf +{ + weight = 125; +}; + +class bulk_ItemComboLockFull +{ + weight = 5.36; +}; + +//Animal craftables +class bulk_ItemAnimalSkinFull +{ + weight = 101; +}; +class bulk_ItemSkinRabbitFull +{ + weight = 41; +}; +class bulk_ItemSkinCowFull +{ + weight = 149; +}; +class bulk_ItemSkinGoatFull +{ + weight = 77; +}; +class bulk_ItemSkinBoarFull +{ + weight = 107; +}; +class bulk_ItemSkinDogFull +{ + weight = 77; +}; +class bulk_ItemSkinSheepFull +{ + weight = 77; +}; +class bulk_ItemWoolFull +{ + weight = 41; +}; +class bulk_ItemLeatherFull +{ + weight = 89; +}; + +//Misc +class bulk_equip_aa_batteryFull +{ + weight = 5.12; +}; + +class bulk_equip_d_batteryFull +{ + weight = 5.24; +}; + +class bulk_equip_duct_tapeFull +{ + weight = 5.48; +}; + +class bulk_equip_feathersFull +{ + weight = 5.12; +}; + +class bulk_equip_floppywireFull +{ + weight = 5.12; +}; + +class bulk_equip_nailsFull +{ + weight = 5.12; +}; + +class bulk_equip_pvc_boxFull +{ + weight = 5.24; +}; + +class bulk_equip_ragFull +{ + weight = 5.36; +}; + +class bulk_equip_ropeFull +{ + weight = 6.2; +}; + +class bulk_equip_scrapelectronicsFull +{ + weight = 11; +}; + +class bulk_equip_stringFull +{ + weight = 5.6; +}; + +class bulk_HandChemBlueFull +{ + weight = 6.2; +}; + +class bulk_HandChemGreenFull +{ + weight = 6.2; +}; +class bulk_HandChemRedFull +{ + weight = 6.2; +}; + +class bulk_HandRoadFlareFull +{ + weight = 13.4; +}; + +class bulk_ItemC4ChargeFull +{ + weight = 14.6; +}; + +class bulk_ItemDogTagFull +{ + weight = 5.12; +}; + +class bulk_ItemHotwireKitFull +{ + weight = 29; +}; + +class bulk_ItemKosmosSmokesFull +{ + weight = 14.6; +}; + +class bulk_ItemLightBulbFull +{ + weight = 5.24; +}; + +class bulk_ItemMixOilFull +{ + weight = 8; +}; + +class bulk_ItemScrewsFull +{ + weight = 8; +}; + +class bulk_PartGlassFull +{ + weight = 65; +}; + +class bulk_PartWheelFull +{ + weight = 125; +}; + +class bulk_PipeBombFull +{ + weight = 53; +}; + +class bulk_ItemFertilizerFull +{ + weight = 35; +}; + +class bulk_ItemKiloBlackTeaFull +{ + weight = 17; +}; + +class bulk_ItemKiloHempFull +{ + weight = 17; +}; + +class bulk_ItemKiloTobaccoFull +{ + weight = 17; }; \ No newline at end of file diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Locks.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Locks.hpp index 358e52f2a..18d9f4cb5 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Locks.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Locks.hpp @@ -1,8 +1,8 @@ class ItemComboLock { - weight = 0.03; + weight = 0.5; }; class ItemPadlock { - weight = 0.03; + weight = 0.5; }; \ No newline at end of file diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Misc.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Misc.hpp index 91067fccf..1b942c264 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Misc.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Misc.hpp @@ -20,12 +20,12 @@ class ItemKosmosSmokesOpen class equip_nails { - weight = 0.01; + weight = 0.5; }; class ItemScrews { - weight = 0.01; + weight = 0.5; }; class equip_duct_tape diff --git a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Planting.hpp b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Planting.hpp index 4cd18fdba..8464855c2 100644 --- a/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Planting.hpp +++ b/SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Items/Planting.hpp @@ -1,6 +1,6 @@ class ItemFertilizer { - weight = 0.1; + weight = 2.5; }; class ItemPumpkinSeed diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml index a67e44eab..326126226 100644 --- a/SQF/dayz_code/stringtable.xml +++ b/SQF/dayz_code/stringtable.xml @@ -24204,6 +24204,10 @@ %1 benutzt um Fahrzeug aufzuschließen. %1 был использован для разблокировки транспорта. + + Pack 6 Sandbags + 6x Stacheldraht einpacken + Upgrade Vehicle Fahrzeug upgraden @@ -25534,6 +25538,17 @@ Kiste (12x StanagSD) Ящик (12x StanagSD) + + 6x SandBag + 6x Sandsack + Ящик с 6-ю мешками с песком. + 6 Pytlů s pískem + + + Supply Crate (6x Sandbag) + Kiste (6x Sandsack) + Ящик (6x Мешок с песком) + 12x SandBag 12x Sandsack @@ -25955,6 +25970,78 @@ Supply Crate (12x AA battery) Kiste (12x AA-Batterien) + + 12x Animalskin + 12x Tierhaut + + + Supply Crate (12x Animalskin) + Kiste (12x Tierhaut) + + + 12x Rabbit skin + 12x Hasenfell + + + Supply Crate (12x Rabbit skin) + Kiste (12x Hasenfell) + + + 12x Cow skin + 12x Kuhfell + + + Supply Crate (12x Cow skin) + Kiste (12x Kuhfell) + + + 12x Goat skin + 12x Ziegenfell + + + Supply Crate (12x Goat skin) + Kiste (12x Ziegenfell) + + + 12x Boar skin + 12x Wildschweinfell + + + Supply Crate (12x Boar skin) + Kiste (Wildschweinfell) + + + 12x Dog skin + 12x Hundefell + + + Supply Crate (12x Dog skin) + Kiste (Hundefell) + + + 12x Sheep skin + 12x Schafsfell + + + Supply Crate (12x Sheep skin) + Kiste (Schafsfell) + + + 12x Wool + 12x Wolle + + + Supply Crate (12x Wool) + Kiste (Wolle) + + + 12x Leather + 12x Leder + + + Supply Crate (12x Wool) + Kiste (Leder) + Safe