mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-17 09:10:27 +03:00
+ [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
24 lines
574 B
C++
24 lines
574 B
C++
class ItemCrowbar: ItemCore
|
|
{
|
|
scope=2;
|
|
displayName="Crowbar";
|
|
model="\dayz_equip\models\crowbar.p3d";
|
|
picture="\z\addons\dayz_communityassets\pictures\equip_crowbar_CA.paa";
|
|
descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails.";
|
|
class ItemActions
|
|
{
|
|
class Toolbelt
|
|
{
|
|
text=$STR_ACTIONS_RFROMTB;
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"ItemCrowbar"
|
|
};
|
|
output[]=
|
|
{
|
|
"MeleeCrowbar"
|
|
};
|
|
};
|
|
};
|
|
}; |