diff --git a/Changelogs/0.5.0.0.txt b/Changelogs/0.5.0.0.txt index ca174681..2be18dc7 100644 --- a/Changelogs/0.5.0.0.txt +++ b/Changelogs/0.5.0.0.txt @@ -1,4 +1,5 @@ [New] Epoch is leaving alpha and entering beta! All Epoch Asset project sources are now available via our GitHub +LFS and under APL-SA license here: https://github.com/EpochModTeam/EpochCore +[Added] 7 new Keesha camo skins by Craig Hauer aka ComatoseBadger. [Added] 64-bit database extension support for Windows (EpochServer_x64.dll) and Linux (epochserver_x64.so) servers. Linux support is pending testing. [Added] Custom event handler and OnEachFrame hooks added. https://github.com/EpochModTeam/Epoch/tree/experimental/Sources/epoch_code/customs Thanks to @Ignatz-HeMan [Added] Crafting recipe: Mortar (Uses: 12x Rock, 2x dirty water) (Requires: Fire and workbench within 3m). Thanks to @baaljayjay for the suggestion. diff --git a/Sources/epoch_config/Configs/CfgItemSort.hpp b/Sources/epoch_config/Configs/CfgItemSort.hpp index e7bca4bb..52a9a285 100644 --- a/Sources/epoch_config/Configs/CfgItemSort.hpp +++ b/Sources/epoch_config/Configs/CfgItemSort.hpp @@ -54,6 +54,13 @@ class CfgItemSort "U_CamoBlue_uniform", "U_CamoBrn_uniform", "U_CamoRed_uniform", + 'U_CamoAloha_uniform", + "U_CamoBiker_uniform", + "U_CamoBubblegum_uniform", + "U_CamoLumberjack_uniform", + "U_CamoOutback_uniform", + "U_CamoPink_uniform", + "U_CamoPinkPolka_uniform", "U_C_Driver_1", "U_C_Driver_2", diff --git a/Sources/epoch_config/Configs/CfgPricing.hpp b/Sources/epoch_config/Configs/CfgPricing.hpp index 87f98709..b4a7236a 100644 --- a/Sources/epoch_config/Configs/CfgPricing.hpp +++ b/Sources/epoch_config/Configs/CfgPricing.hpp @@ -3282,6 +3282,34 @@ class CfgPricing { price = 5; }; + class U_CamoAloha_uniform + { + price = 5; + }; + class U_CamoBiker_uniform + { + price = 5; + }; + class U_CamoBubblegum_uniform + { + price = 5; + }; + class U_CamoLumberjack_uniform + { + price = 5; + }; + class U_CamoOutback_uniform + { + price = 5; + }; + class U_CamoPink_uniform + { + price = 5; + }; + class U_CamoPinkPolka_uniform + { + price = 5; + }; class U_C_Driver_1 { price = 5; diff --git a/Sources/epoch_server/init/server_securityfunctions.sqf b/Sources/epoch_server/init/server_securityfunctions.sqf index cb3b837b..1bb3f193 100644 --- a/Sources/epoch_server/init/server_securityfunctions.sqf +++ b/Sources/epoch_server/init/server_securityfunctions.sqf @@ -1909,6 +1909,13 @@ _skn_admincode = compileFinal (" 'U_Wetsuit_Purp', 'U_Wetsuit_Camo', 'U_CamoRed_uniform', + 'U_CamoAloha_uniform', + 'U_CamoBiker_uniform', + 'U_CamoBubblegum_uniform', + 'U_CamoLumberjack_uniform', + 'U_CamoOutback_uniform', + 'U_CamoPink_uniform', + 'U_CamoPinkPolka_uniform', 'U_CamoBrn_uniform', 'U_CamoBlue_uniform', 'U_Camo_uniform', diff --git a/Sources/epoch_server_settings/configs/CfgLootTable.h b/Sources/epoch_server_settings/configs/CfgLootTable.h index 6e6098e6..26de6527 100644 --- a/Sources/epoch_server_settings/configs/CfgLootTable.h +++ b/Sources/epoch_server_settings/configs/CfgLootTable.h @@ -1132,6 +1132,13 @@ class CfgLootTable items[] = { { { "FemaleWetsuits", "CfgLootTable" }, 1 }, { { "U_CamoRed_uniform", "item" }, 1 }, + { { "U_CamoAloha_uniform", "item" }, 1 }, + { { "U_CamoBiker_uniform", "item" }, 1 }, + { { "U_CamoBubblegum_uniform", "item" }, 1 }, + { { "U_CamoLumberjack_uniform", "item" }, 1 }, + { { "U_CamoOutback_uniform", "item" }, 1 }, + { { "U_CamoPink_uniform", "item" }, 1 }, + { { "U_CamoPinkPolka_uniform", "item" }, 1 }, { { "U_CamoBrn_uniform", "item" }, 1 }, { { "U_CamoBlue_uniform", "item" }, 1 }, { { "U_Camo_uniform", "item" }, 1 }, diff --git a/Sources/epoch_server_settings/configs/CfgLootTable_CUP.h b/Sources/epoch_server_settings/configs/CfgLootTable_CUP.h index 4e1d97f7..b50a0ae3 100644 --- a/Sources/epoch_server_settings/configs/CfgLootTable_CUP.h +++ b/Sources/epoch_server_settings/configs/CfgLootTable_CUP.h @@ -1695,6 +1695,13 @@ class CfgLootTable_CUP items[] = { { { "FemaleWetsuits", "CfgLootTable" }, 1 }, { { "U_CamoRed_uniform", "item" }, 1 }, + { { "U_CamoAloha_uniform", "item" }, 1 }, + { { "U_CamoBiker_uniform", "item" }, 1 }, + { { "U_CamoBubblegum_uniform", "item" }, 1 }, + { { "U_CamoLumberjack_uniform", "item" }, 1 }, + { { "U_CamoOutback_uniform", "item" }, 1 }, + { { "U_CamoPink_uniform", "item" }, 1 }, + { { "U_CamoPinkPolka_uniform", "item" }, 1 }, { { "U_CamoBrn_uniform", "item" }, 1 }, { { "U_CamoBlue_uniform", "item" }, 1 }, { { "U_Camo_uniform", "item" }, 1 },