mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Add journal and preliminary strings for crafting
The journal is now functional. Preliminary strings are added for the 1.8.7 crafting system, but it is disabled for now. I've messaged @marceldev89 (ziellos2k) and @AlbyBDPK on the DayZ forums to ask permission to use fn_updateCraftUI, player_checkRecipe and player_craftItemGUI. Are you guys okay with us including these in DayZ Epoch 1.0.6?
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
class Wooden_Arrow : Recipe {
|
||||
displayName = $STR_ITEMWOODENARROW_CODE_NAME;
|
||||
input[] =
|
||||
{
|
||||
{"PartWoodPile","CfgMagazines",1},
|
||||
{"equip_feathers","CfgMagazines",2}
|
||||
};
|
||||
output[] =
|
||||
{
|
||||
{"WoodenArrow","CfgMagazines",4}
|
||||
};
|
||||
required[] =
|
||||
{
|
||||
{"ItemToolbox","CfgWeapons",1}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user