mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
Optional Safe with less maxload
This commit is contained in:
parent
765ad30d4d
commit
feef60b72a
@ -1414,6 +1414,21 @@ class CfgBaseBuilding
|
||||
{
|
||||
returnOnPack[] = {};
|
||||
};
|
||||
class Safe_s_EPOCH : Default
|
||||
{
|
||||
returnOnPack[] = {{"ItemSafe_s",1}};
|
||||
simulClass = "Safe_s_SIM_EPOCH";
|
||||
staticClass = "Safe_s_EPOCH";
|
||||
weaponHolderProxy = "SafeProxy_EPOCH";
|
||||
GhostPreview = "Safe_s_EPOCH";
|
||||
bypassJammer = 1;
|
||||
limitNearby = 2;
|
||||
isSecureStorage = 1;
|
||||
};
|
||||
class Safe_s_SIM_EPOCH : Safe_EPOCH
|
||||
{
|
||||
returnOnPack[] = {};
|
||||
};
|
||||
class GunSafe_EPOCH : Default
|
||||
{
|
||||
returnOnPack[] = {{"ItemGunSafe",1}};
|
||||
|
@ -249,6 +249,10 @@ class CfgItemInteractions
|
||||
{
|
||||
buildClass = "Safe_SIM_EPOCH";
|
||||
};
|
||||
class ItemSafe_s : Item_Build_base
|
||||
{
|
||||
buildClass = "Safe_s_SIM_EPOCH";
|
||||
};
|
||||
class ItemGunSafe : Item_Build_base
|
||||
{
|
||||
buildClass = "GunSafe_SIM_EPOCH";
|
||||
|
@ -1155,6 +1155,7 @@ class CfgItemSort
|
||||
"ItemLockbox",
|
||||
"Pelt_EPOCH",
|
||||
"ItemSafe",
|
||||
"ItemSafe_s",
|
||||
"ItemGunSafe",
|
||||
"ItemSolar",
|
||||
"ItemCables",
|
||||
|
@ -330,6 +330,11 @@ class CfgPricing
|
||||
price = 1250;
|
||||
tax = 0.5;
|
||||
};
|
||||
class ItemSafe_s
|
||||
{
|
||||
price = 1250;
|
||||
tax = 0.5;
|
||||
};
|
||||
class ItemGunSafe
|
||||
{
|
||||
price = 1250;
|
||||
|
@ -84,6 +84,7 @@ class CfgLootTable
|
||||
{
|
||||
items[] = {
|
||||
{ { "ItemSafe", "magazine" }, 1 },
|
||||
// { { "ItemSafe_s", "magazine" }, 1 }, // Variant with less Load than the normal Safe
|
||||
{ { "ItemGunSafe", "magazine" }, 1 }
|
||||
};
|
||||
};
|
||||
|
@ -84,6 +84,7 @@ class CfgLootTable_CUP
|
||||
{
|
||||
items[] = {
|
||||
{ { "ItemSafe", "magazine" }, 1 },
|
||||
// { { "ItemSafe_s", "magazine" }, 1 }, // Variant with less Load than the normal Safe
|
||||
{ { "ItemGunSafe", "magazine" }, 1 }
|
||||
};
|
||||
};
|
||||
|
@ -84,6 +84,7 @@ class CfgLootTable_MAD
|
||||
{
|
||||
items[] = {
|
||||
{ { "ItemSafe", "magazine" }, 1 },
|
||||
// { { "ItemSafe_s", "magazine" }, 1 }, // Variant with less Load than the normal Safe
|
||||
{ { "ItemGunSafe", "magazine" }, 1 }
|
||||
};
|
||||
};
|
||||
|
@ -84,6 +84,7 @@ class CfgLootTable_MADCUP
|
||||
{
|
||||
items[] = {
|
||||
{ { "ItemSafe", "magazine" }, 1 },
|
||||
// { { "ItemSafe_s", "magazine" }, 1 }, // Variant with less Load than the normal Safe
|
||||
{ { "ItemGunSafe", "magazine" }, 1 }
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user