mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-19 10:02:02 +03:00
CFG WEAPONS DONE
This commit is contained in:
38
SQF/dayz_code/Configs/CfgWeapons/Tools/FishingPole.hpp
Normal file
38
SQF/dayz_code/Configs/CfgWeapons/Tools/FishingPole.hpp
Normal file
@@ -0,0 +1,38 @@
|
||||
class ItemFishingPole: ItemCore
|
||||
{
|
||||
scope=2;
|
||||
displayName=$STR_EQUIP_FISHPOLE;
|
||||
model="\z\addons\dayz_epoch\models\fishing_rod_loot_item.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa";
|
||||
descriptionShort=$STR_EQUIP_FISHPOLE_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Toolbelt
|
||||
{
|
||||
text = $STR_ACTIONS_RFROMTB;
|
||||
script = "spawn player_addToolbelt;";
|
||||
use[] =
|
||||
{
|
||||
"ItemFishingPole"
|
||||
};
|
||||
output[] =
|
||||
{
|
||||
"MeleeFishingPole"
|
||||
};
|
||||
};
|
||||
|
||||
class ToBack
|
||||
{
|
||||
text = $STR_ACTIONS_2BACK;
|
||||
script = "spawn player_addtoBack;";
|
||||
use[] =
|
||||
{
|
||||
"ItemFishingPole"
|
||||
};
|
||||
output[] =
|
||||
{
|
||||
"MeleeFishingPole"
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user