Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp
[VB]AWOL 9e5957b89d 1.0.1.7 DEV TEST
+ [CHANGED] Can now fill empty fuel barrels on standard fuel tanks.
+ [CHANGED] Increased range of crafting from 2m to 3m
+ [FIXED] Removed repair action from tow truck with VIL_asistvan_DZE
+ [ADDED] Tow truck VIL_asistvan_DZE can tow vehicles that fit within
the bounding box of the model.
+ [ADDED] Ability for fuel trucks to fill nearby vehicles 30m when
engine is running.
+ [CHANGED] Reworked Epoch events scheduler and made it more accurate.
+ [REMOVED] Road debris no longer spawn loot, helps with performance and
we have added extra loot positions in the world.
+ and more
2013-08-05 11:09:26 -05:00

39 lines
727 B
C++

class MeleeFishingPole: MeleeWeapon
{
scope=2;
autoreload=1;
magazineReloadTime=0;
model="\z\addons\dayz_epoch\models\fishing_rod_weaponized.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa";
displayName="Fishing Pole";
magazines[]=
{
"Fishing_Swing"
};
class ItemActions
{
class Use
{
text="Cast Fishing Pole";
script="spawn player_goFishing;";
};
class Toolbelt
{
text="Add to Toolbelt";
script="spawn player_addToolbelt;";
use[]=
{
"MeleeFishingPole"
};
output[]=
{
"ItemFishingPole"
};
};
};
class Library
{
libTextDesc="";
};
descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm.";
};