Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Items/Explosives.hpp
A Man 0def480120 Add and update models for magazines
Big thanks @helion4 for his tireless and great work.
2020-04-08 17:23:46 +02:00

16 lines
436 B
C++

class Mine: TimeBomb
{
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
};
class MineE: TimeBomb
{
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
};
class PipeBomb: TimeBomb
{
displayName = $STR_DZ_MAG_SATCHEL_NAME; // Singular "Satchel Charge" for death messages "with a x"
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
model = "\z\addons\dayz_epoch_w\magazine\dze_satchel.p3d";
};