Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_rope.hpp
ebaydayz cc2aae59eb Change splint recipe
Vanilla development commit:

6ea5d8ebee
2016-07-23 15:12:08 -04:00

22 lines
585 B
C++

class equip_rope : CA_Magazine {
scope = public;
count = 1;
displayName = $STR_ITEM_NAME_equip_rope;
descriptionShort = $STR_ITEM_DESC_equip_rope;
model = "\z\addons\dayz_communityassets\models\rope.p3d";
picture = "\z\addons\dayz_communityassets\pictures\equip_rope_ca.paa";
type = 256;
class ItemActions
{
class Crafting
{
text = $STR_BLD_craft_equip_rope;//"String"
script = "spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {""};
output[] = {{"equip_string","CfgMagazines",2}};
input[] = {{"equip_rope","CfgMagazines",1}};
};
};
};