mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
7 new items - server admins can add them if desired Adding a better and some missing localizations Adding a localization for the car bomb
15 lines
402 B
C++
15 lines
402 B
C++
class ItemCarBomb : CA_Magazine {
|
|
scope = public;
|
|
count = 1;
|
|
type = 256;
|
|
displayName = $STR_ITEM_NAME_equip_carbomb;
|
|
model = "\ca\weapons\explosive.p3d";
|
|
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
|
|
descriptionShort = $STR_ITEM_DESC_equip_carbomb;
|
|
class ItemActions {
|
|
class Use {
|
|
text = $STR_ACTIONS_attach_carbomb;
|
|
script = "spawn player_attach_bomb;";
|
|
};
|
|
};
|
|
};
|