mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
17 lines
474 B
C++
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;";
|
|
};
|
|
};
|
|
};
|
|
|