Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Crafting/equip_woodensplint.hpp
ebaydayz b2394703f3 Update vanilla player build
Vanilla development commit:

20f992fcb7
2016-08-11 20:01:53 -04:00

17 lines
474 B
C++

class equip_woodensplint : CA_Magazine {
scope = public;
count = 1;
displayName = $STR_ITEM_NAME_WOODENSPLINT;
descriptionShort = $STR_ITEM_DESC_WOODENSPLINT;
model = "\z\addons\dayz_communityassets\models\woodensplint.p3d";
picture = "\z\addons\dayz_communityassets\pictures\equip_woodensplint_ca.paa";
type = 256; //WeaponSlotItem * 2 in vanilla
class ItemActions {
class Use {
text = $STR_ACTIONS_BRACE_LEG;
script = "spawn player_useMeds;";
};
};
};