Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Magazines/Misc.hpp
A Man d9b9874532 Change scope and type of configs from name to numbers
This got discussed earlier. Since epoch got merged with DayZ Mod we have a different name for the scope and type of configs.  A proper config should use numbers for those entries. This is the same how arma configs are written.  The basicDefines.hpp has all the needed information stored.

Also, this removes the weight entries from the magazines since we have them in a separate folder, so admins can edit them.
2020-05-29 02:04:06 +02:00

57 lines
971 B
C++

//CZ550
class 5x_22_LR_17_HMR;
class 5Rnd_17HMR : 5x_22_LR_17_HMR
{
displayName = $STR_DZ_MAG_5RND_17HMR_NAME;
descriptionShort = $STR_DZ_MAG_5RND_17HMR_DESC;
model = "\dayz_equip\models\mag5rnd.p3d";
class ItemActions
{
COMBINE_MAG
};
};
//Lee-Enfield
class 10x_303;
class 10Rnd_303British : 10x_303
{
model = "\dayz_equip\models\mag10rnd.p3d";
displayName = $STR_DZ_MAG_10RND_303BRITISH_NAME;
class ItemActions
{
COMBINE_MAG
};
};
//KSVK
class 5Rnd_127x108_KSVK : CA_Magazine
{
displayName = $STR_DZ_MAG_5Rnd_127x108_KSVK_NAME;
cartridgeName = "127x108";
class ItemActions
{
COMBINE_MAG
};
};
//Sa61
class 10Rnd_B_765x17_Ball: CA_Magazine
{
model = "\z\addons\dayz_epoch_w\magazine\dze_sa61_mag.p3d";
displayName = "$STR_EP1_DN_10RND_B_765X17_BALL";
cartridgeName = "765x17";
class ItemActions
{
COMBINE_MAG
};
};
//Sa61
class 20Rnd_B_765x17_Ball: 10Rnd_B_765x17_Ball
{
displayName = "$STR_EP1_DN_20RND_B_765X17_BALL";
};