mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 04:23:13 +03:00
CFG WEAPONS DONE
This commit is contained in:
21
SQF/dayz_code/Configs/CfgConstruction/CfgConstruction.hpp
Normal file
21
SQF/dayz_code/Configs/CfgConstruction/CfgConstruction.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
class CfgConstruction {
|
||||
class Recipe {
|
||||
displayName = "Generic Recipe";
|
||||
input[] = {}; //Items consumed during crafting
|
||||
required[] = {}; //Items needed for but not consumed during crafting
|
||||
};
|
||||
|
||||
class Blueprint_woodenFence : Recipe {
|
||||
displayName = "WoodenFence Foundation";
|
||||
input[] =
|
||||
{
|
||||
{"ItemLog","CfgMagazines",2},
|
||||
{"ItemStone","CfgMagazines",3}
|
||||
};
|
||||
toolsRequired[] =
|
||||
{
|
||||
{"ItemEtool","CfgWeapons",1}
|
||||
};
|
||||
orignalclass = "ItemDIY_wood";
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user