diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp index a816f7eba..495071031 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp @@ -1,7 +1,7 @@ class MeleeFlashlight : Pistol { class ItemActions { class Toolbelt { - text = "Add to toolbelt"; + text = "STR_EPOCH_PLAYER_300"; }; }; }; @@ -9,7 +9,7 @@ class MeleeFlashlight : Pistol { class ItemFlashlight : ItemCore { class ItemActions { class Toolbelt { - text = "Remove from toolbelt"; + text = "STR_EPOCH_PLAYER_299"; }; }; }; @@ -17,7 +17,7 @@ class MeleeFlashlight : Pistol { class MeleeFlashlightRed : MeleeFlashlight { class ItemActions { class Toolbelt { - text = "Add to toolbelt"; + text = "STR_EPOCH_PLAYER_300"; }; }; }; @@ -25,7 +25,7 @@ class MeleeFlashlight : Pistol { class ItemFlashlightRed : ItemCore { class ItemActions { class Toolbelt { - text = "Remove from toolbelt"; + text = "STR_EPOCH_PLAYER_299"; }; }; - }; \ No newline at end of file + }; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp index 723943f4a..3ce285029 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp @@ -1,6 +1,6 @@ //NotWorking _DZ Remove class ItemEtool: ItemCore { scope = 2; - displayName = "Etool"; + displayName = $STR_EQUIP_ETOOL; descriptionShort = $STR_EQUIP_DESC_1; -}; \ No newline at end of file +}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp index 112376f90..5294df8c8 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp @@ -1,15 +1,15 @@ class ItemFishingPole: ItemCore { scope=2; - displayName="Fishing Pole"; + displayName=$STR_EQUIP_FISHPOLE; model="\z\addons\dayz_epoch\models\fishing_rod_loot_item.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa"; - descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm."; + descriptionShort=$STR_EQUIP_FISHPOLE_DESC; class ItemActions { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { @@ -21,4 +21,4 @@ class ItemFishingPole: ItemCore }; }; }; -}; \ No newline at end of file +}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp index 246037791..51b236613 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp @@ -1,7 +1,7 @@ class ItemKeyKit: ItemCore { scope = 2; - displayname = "Keymakers kit"; + displayname = $STR_EQUIP_KEYKIT; model="\z\addons\dayz_epoch\models\keykit.p3d"; - descriptionShort="Kit including the tools required to smelt, mold and shape keys."; + descriptionShort=$STR_EQUIP_KEYKIT_DESC; picture="\z\addons\dayz_epoch\pictures\equip_keykit_ca.paa"; -}; \ No newline at end of file +}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp index ab5b33444..a83ca112d 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp @@ -1,15 +1,15 @@ class ItemSledge: ItemCore { scope=2; - displayName="Sledgehammer"; + displayName=$STR_EQUIP_SLEDGE; model="\z\addons\dayz_epoch\models\sledge_mag.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; - descriptionShort="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers."; + descriptionShort=$STR_EQUIP_SLEDGE_DESC; class ItemActions { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp index 4c07ea566..00b2fbefa 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp @@ -1,15 +1,15 @@ class ItemCrowbar: ItemCore { scope=2; - displayName="Crowbar"; + displayName=$STR_EQUIP_CROWBAR; model="\dayz_equip\models\crowbar.p3d"; picture="\z\addons\dayz_communityassets\pictures\equip_crowbar_CA.paa"; - descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails."; + descriptionShort=$STR_EQUIP_CROWBAR_DESC; class ItemActions { class Toolbelt { - text = "Remove from toolbelt"; + text = "STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { @@ -21,4 +21,4 @@ class ItemCrowbar: ItemCore }; }; }; - }; \ No newline at end of file + }; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp index 237a78012..128bb7dbc 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp @@ -8,7 +8,7 @@ class ItemHatchet_DZE : ItemCore { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { @@ -20,4 +20,4 @@ class ItemHatchet_DZE : ItemCore { }; }; }; - }; \ No newline at end of file + }; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp index fdc47df6e..607111e7a 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp @@ -9,7 +9,7 @@ class ItemMachete: ItemCore { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { @@ -22,4 +22,4 @@ class ItemMachete: ItemCore }; }; }; - \ No newline at end of file + diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp index 15b437d72..f9551968a 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp @@ -6,7 +6,7 @@ class MeleeCrowbar: MeleeWeapon magazineReloadTime=0; model="\dayz_weapons\models\crowbar_weaponized"; picture="\dayz_weapons\textures\equip_crowbar_CA.paa"; - displayName="Crowbar"; + displayName=$STR_EQUIP_CROWBAR; droppeditem= "ItemCrowbar"; magazines[]= { @@ -21,7 +21,7 @@ class MeleeCrowbar: MeleeWeapon { class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -35,7 +35,7 @@ class MeleeCrowbar: MeleeWeapon }; class Library { - libTextDesc="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails."; + libTextDesc="STR_EQUIP_CROWBAR_DESC"; }; - descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails."; - }; \ No newline at end of file + descriptionShort="STR_EQUIP_CROWBAR_DESC"; + }; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp index 963b95f09..1ab57f47f 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp @@ -5,7 +5,7 @@ class MeleeFishingPole: MeleeWeapon magazineReloadTime=0; model="\z\addons\dayz_epoch\models\fishing_rod_weaponized.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa"; - displayName="Fishing Pole"; + displayName=$STR_EQUIP_FISHPOLE; magazines[]= { "Fishing_Swing" @@ -19,12 +19,12 @@ class MeleeFishingPole: MeleeWeapon { class Use { - text="Cast Fishing Pole"; + text="STR_EPOCH_PLAYER_297"; script="spawn player_goFishing;"; }; class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -40,5 +40,5 @@ class MeleeFishingPole: MeleeWeapon { libTextDesc=""; }; - descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm."; -}; \ No newline at end of file + descriptionShort=$STR_EQUIP_FISHPOLE_DESC; +}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp index ab7587206..ba7886bda 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp @@ -21,7 +21,7 @@ class MeleeHatchet: MeleeWeapon { class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -38,4 +38,4 @@ class MeleeHatchet: MeleeWeapon libTextDesc="$STR_EQUIP_DESC_41"; }; descriptionShort="$STR_EQUIP_DESC_41"; - }; \ No newline at end of file + }; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp index e720895cb..105c1e7ab 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp @@ -6,7 +6,7 @@ class MeleeSledge: MeleeWeapon magazineReloadTime=0; model="\z\addons\dayz_epoch\models\sledge_weaponized"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; // todo icon - displayName="Sledgehammer"; + displayName="STR_EQUIP_SLEDGE"; droppeditem= "ItemSledge"; magazines[]= { @@ -21,7 +21,7 @@ class MeleeSledge: MeleeWeapon { class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -35,7 +35,7 @@ class MeleeSledge: MeleeWeapon }; class Library { - libTextDesc="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers."; + libTextDesc="STR_EQUIP_CROWBAR_DESC"; }; - descriptionShort="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers."; - }; \ No newline at end of file + descriptionShort="STR_EQUIP_CROWBAR_DESC"; + }; diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 0abee1243..bf091a129 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -2522,6 +2522,96 @@ Orange Sherbet est une boisson gazeuse rafraîchissante sucrée trés pétillante. Orange Sherbet is a tangy orange carbonated soft drink with plenty of fizz. + + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + + + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + + + Sledgehammer + Sledgehammer + Vorschlaghammer + кувалда + Almádena + Beukhamer + Frappe-Devant + Perlík + + + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + + + Fishing Pole + Fishing Pole + Angelrute + удочка + Caña de Pesca + Hengelroede + Canne à Pêche + Rybářský Prut + + + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + + + Crowbar + Crowbar + Brechstange + aншпуг + Palanca + Breekijzer + Pied de Biche + Sochor + + + A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails. + A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails. + + + + + + + + + Etool + Etool + Feldspaten + саперная лопатка + Pala Afianzar + + Outil de Tranchée + + @@ -5464,6 +5554,36 @@ + + Remove from Toolbelt. + Remove from Toolbelt. + + + + + + + + + Add to Toolbelt. + Add to Toolbelt. + + + + + + + + + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + 1.04 1.04