mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
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?
35 lines
634 B
C++
35 lines
634 B
C++
class Blueprint_SepsisBandage : Recipe {
|
|
displayName = $STR_CRAFT_NAME_SepsisBandage;
|
|
input[] =
|
|
{
|
|
{"ItemBandage","CfgMagazines",1},
|
|
{"equip_comfreyleafs","CfgMagazines",1}
|
|
};
|
|
output[] =
|
|
{
|
|
{"ItemSepsisBandage","CfgMagazines",1}
|
|
};
|
|
required[] =
|
|
{
|
|
};
|
|
};
|
|
|
|
/*
|
|
class Blueprint_SepsisBandage_Packaged : Recipe {
|
|
displayName = $STR_CRAFT_NAME_SepsisBandage;
|
|
input[] =
|
|
{
|
|
{"equip_rag","CfgMagazines",1},
|
|
{"equip_gauzepackaged","CfgMagazines",1},
|
|
{"equip_comfreyleafs","CfgMagazines",1},
|
|
{"equip_string","CfgMagazines",1}
|
|
};
|
|
output[] =
|
|
{
|
|
{"ItemSepsisBandage","CfgMagazines",2}
|
|
};
|
|
required[] =
|
|
{
|
|
};
|
|
};
|
|
*/ |