Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Items/Workbench.hpp
ebayShopper b39a15cdd7 Update vanilla building
Vanilla commit:

ad0d514118
2017-12-04 13:49:12 -05:00

22 lines
708 B
C++

class ItemWorkBench : CA_Magazine
{
scope = public;
count = 1;
type = 256;
displayName = $STR_BLD_name_ItemWorkBench;//"Work Bench (Packed)"
model = "z\addons\dayz_buildings\models\workbench_flat.p3d";
picture = "\z\addons\dayz_buildings\equip\item_workbench.paa"; // add to PBO
descriptionShort = $STR_BLD_desc_ItemWorkBench;//"A Folded Workbench, required for House Building and Some Crafting"
vehicle = "WorkBench";
sfx = "tentunpack";
class ItemActions {
class Build {
text = $STR_BLD_build_ItemWorkBench;//"place WorkBench"
script = "; ['ItemWorkBench','Build'] spawn player_buildPlaceables;";
require[] = {};
consume[] = {"ItemWorkBench"};
create = "WorkBench";
};
};
};