diff --git a/SQF/dayz_code/Configs/CfgMagazines/Crafting/Crafting.hpp b/SQF/dayz_code/Configs/CfgMagazines/Crafting/Crafting.hpp
index 024f8b7c2..df86c05fb 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/Crafting/Crafting.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/Crafting/Crafting.hpp
@@ -60,3 +60,6 @@
//#include "equip_brick.hpp"
//Need adding to loot table
+
+//Epoch 1.0.7
+#include "equip_paintbucket.hpp"
diff --git a/SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_paintbucket.hpp b/SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_paintbucket.hpp
new file mode 100644
index 000000000..ffc5f6b32
--- /dev/null
+++ b/SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_paintbucket.hpp
@@ -0,0 +1,48 @@
+class equip_paint_generic : CA_Magazine {
+ scope = public;
+ count = 1;
+ type = 256;
+ picture = "\dayz_epoch_c\icons\equipment\equip_paint_generic.paa";
+ displayName = $STR_DZE_EQUIP_PAINT_GENERIC_NAME;
+ descriptionShort = $STR_DZE_EQUIP_PAINT_GENERIC_DESC;
+};
+class equip_paint_black : CA_Magazine {
+ scope = public;
+ count = 1;
+ type = 256;
+ picture = "\dayz_epoch_c\icons\equipment\equip_paint_black.paa";
+ displayName = $STR_DZE_EQUIP_PAINT_BLACK_NAME;
+ descriptionShort = $STR_DZE_EQUIP_PAINT_BLACK_DESC;
+};
+class equip_paint_white : CA_Magazine {
+ scope = public;
+ count = 1;
+ type = 256;
+ picture = "\dayz_epoch_c\icons\equipment\equip_paint_white.paa";
+ displayName = $STR_DZE_EQUIP_PAINT_WHITE_NAME;
+ descriptionShort = $STR_DZE_EQUIP_PAINT_WHITE_DESC;
+};
+class equip_paint_blue : CA_Magazine {
+ scope = public;
+ count = 1;
+ type = 256;
+ picture = "\dayz_epoch_c\icons\equipment\equip_paint_blue.paa";
+ displayName = $STR_DZE_EQUIP_PAINT_BLUE_NAME;
+ descriptionShort = $STR_DZE_EQUIP_PAINT_BLUE_DESC;
+};
+class equip_paint_green : CA_Magazine {
+ scope = public;
+ count = 1;
+ type = 256;
+ picture = "\dayz_epoch_c\icons\equipment\equip_paint_green.paa";
+ displayName = $STR_DZE_EQUIP_PAINT_GREEN_NAME;
+ descriptionShort = $STR_DZE_EQUIP_PAINT_GREEN_DESC;
+};
+class equip_paint_red : CA_Magazine {
+ scope = public;
+ count = 1;
+ type = 256;
+ picture = "\dayz_epoch_c\icons\equipment\equip_paint_red.paa";
+ displayName = $STR_DZE_EQUIP_PAINT_RED_NAME;
+ descriptionShort = $STR_DZE_EQUIP_PAINT_RED_DESC;
+};
\ No newline at end of file
diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml
index 65ecfeedb..c33ee27e1 100644
--- a/SQF/dayz_code/stringtable.xml
+++ b/SQF/dayz_code/stringtable.xml
@@ -18284,6 +18284,54 @@
A silencer that can be attached to 7.62 calibre rifles.
Ein Schalldämpfer der an Kaliber 7.62 Gewehre angebracht werden kann.
+
+ Paint bucket (generic)
+ Farbeimer (Generisch)
+
+
+ A generic bucket of paint.
+ Ein generischer Farbeimer.
+
+
+ Paint bucket (black)
+ Farbeimer (Schwarz)
+
+
+ A bucket of black paint.
+ Ein Farbeimer mit schwarzer Farbe.
+
+
+ Paint bucket (white)
+ Farbeimer (Weiss)
+
+
+ A bucket of white paint.
+ Ein Farbeimer mit weisser Farbe.
+
+
+ Paint bucket (blue)
+ Farbeimer (Blau)
+
+
+ A bucket of blue paint.
+ Ein Farbeimer mit blauer Farbe.
+
+
+ Paint bucket (green)
+ Farbeimer (Grün)
+
+
+ A bucket of green paint.
+ Ein Farbeimer mit grüner Farbe.
+
+
+ Paint bucket (red)
+ Farbeimer (Rot)
+
+
+ A bucket of red paint.
+ Ein Farbeimer mit roter Farbe.
+