mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
22 lines
580 B
C++
22 lines
580 B
C++
class equip_rope : CA_Magazine {
|
|
scope = 2;
|
|
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",3}};
|
|
input[] = {{"equip_rope","CfgMagazines",1}};
|
|
};
|
|
};
|
|
};
|