mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
CFG WEAPONS DONE
This commit is contained in:
21
SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_rope.hpp
Normal file
21
SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_rope.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
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",3}};
|
||||
input[] = {{"equip_rope","CfgMagazines",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user