diff --git a/Documents/Epoch 1.0.7 Classnames/CfgWeapons all.txt b/Documents/Epoch 1.0.7 Classnames/CfgWeapons all.txt index bd7cf5347..d74bc3843 100644 --- a/Documents/Epoch 1.0.7 Classnames/CfgWeapons all.txt +++ b/Documents/Epoch 1.0.7 Classnames/CfgWeapons all.txt @@ -964,6 +964,7 @@ DesertEagle_DZ DesertEagle_Gold_DZ DesertEagle_Silver_DZ DesertEagle_Modern_DZ +Sa61_DZ MeleeHatchet MeleeCrowbar MeleeMachete diff --git a/Documents/Epoch 1.0.7 Classnames/Epoch Weapons.txt b/Documents/Epoch 1.0.7 Classnames/Epoch Weapons.txt index fbae78e95..5592595dd 100644 --- a/Documents/Epoch 1.0.7 Classnames/Epoch Weapons.txt +++ b/Documents/Epoch 1.0.7 Classnames/Epoch Weapons.txt @@ -719,4 +719,5 @@ CZ75SP_SD_DZ DesertEagle_DZ DesertEagle_Gold_DZ DesertEagle_Silver_DZ -DesertEagle_Modern_DZ \ No newline at end of file +DesertEagle_Modern_DZ +Sa61_DZ \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp b/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp index 15a52a847..92b48dfe4 100644 --- a/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp +++ b/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp @@ -214,7 +214,8 @@ weaponsCZ[] = {Loot_WEAPON, 2, CZ75P_DZ}, {Loot_WEAPON, 2, CZ75D_DZ}, {Loot_WEAPON, 2, CZ75SP_DZ}, - {Loot_WEAPON, 1, CZ75SP_SD_DZ}, + {Loot_WEAPON, 1, CZ75SP_SD_DZ}, + {Loot_WEAPON, 5, Sa61_DZ}, // Bolt action rifles and shotguns {Loot_WEAPON, 5, USAS12_DZ}, diff --git a/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp b/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp index 01bc2de5d..0404b408e 100644 --- a/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp @@ -84,7 +84,7 @@ class Category_13 { //Submachine Guns class Category_14 { - class Sa61_EP1 {type = "trade_weapons";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};}; + class Sa61_DZ {type = "trade_weapons";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};}; class Mac10_DZ {type = "trade_weapons";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};}; class TEC9_DZ {type = "trade_weapons";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};}; class PDW_DZ {type = "trade_weapons";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderZSC/Category/Weapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderZSC/Category/Weapons.hpp index 96dfcc3df..fe2ad4e20 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderZSC/Category/Weapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderZSC/Category/Weapons.hpp @@ -84,7 +84,7 @@ class Category_13 { //Submachine Guns class Category_14 { - class Sa61_EP1 {type = "trade_weapons";buy[] = {100,"worth"};sell[] = {50,"worth"};}; + class Sa61_DZ {type = "trade_weapons";buy[] = {100,"worth"};sell[] = {50,"worth"};}; class Mac10_DZ {type = "trade_weapons";buy[] = {100,"worth"};sell[] = {50,"worth"};}; class TEC9_DZ {type = "trade_weapons";buy[] = {100,"worth"};sell[] = {50,"worth"};}; class PDW_DZ {type = "trade_weapons";buy[] = {400,"worth"};sell[] = {200,"worth"};}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp b/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp index 2d0f0a61c..096a615f4 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp @@ -245,7 +245,8 @@ class CfgWeapons class UZI_SD_EP1; #include "Pistols\PDW.hpp" #include "Pistols\TEC9.hpp" - #include "Pistols\MAC10.hpp" + #include "Pistols\MAC10.hpp" + #include "Pistols\SA61.hpp" class revolver_EP1; #include "Pistols\Revolver.hpp" diff --git a/SQF/dayz_code/Configs/CfgWeapons/Pistols/SA61.hpp b/SQF/dayz_code/Configs/CfgWeapons/Pistols/SA61.hpp new file mode 100644 index 000000000..9018c8987 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgWeapons/Pistols/SA61.hpp @@ -0,0 +1,4 @@ +class Sa61_EP1; +class Sa61_DZ: Sa61_EP1 { + displayName = $STR_DZ_WPN_SA61_NAME; +}; \ No newline at end of file