Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_carbomb.hpp
A Man d56f3a68f4 7 new items, missing localizations (#2004)
7 new items - server admins can add them if desired

Adding a better and some missing localizations

Adding a localization for the car bomb
2017-12-14 13:29:20 -05:00

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;";
};
};
};