mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-25 01:20:49 +03:00
moved some configs added new zeds from 177 pt1
This commit is contained in:
42
SQF/dayz_code/Configs/CfgWeapons/Item/Flare.hpp
Normal file
42
SQF/dayz_code/Configs/CfgWeapons/Item/Flare.hpp
Normal file
@@ -0,0 +1,42 @@
|
||||
class Flare : GrenadeLauncher {
|
||||
class ThrowMuzzle;
|
||||
class MolotovCocktailMuzzle : ThrowMuzzle {
|
||||
displayName = "$STR_ACTION_THROW";
|
||||
magazines[] = {
|
||||
"TrashJackDaniels",
|
||||
"ItemSodaEmpty",
|
||||
"TrashTinCan",
|
||||
"FoodCanGriffEmpty",
|
||||
"FoodCanBadguyEmpty",
|
||||
"FoodCanBoneboyEmpty",
|
||||
"FoodCanCornEmpty",
|
||||
"FoodCanCurgonEmpty",
|
||||
"FoodCanDemonEmpty",
|
||||
"FoodCanFraggleosEmpty",
|
||||
"FoodCanHerpyEmpty",
|
||||
"FoodCanDerpyEmpty",
|
||||
"FoodCanOrlokEmpty",
|
||||
"FoodCanPowellEmpty",
|
||||
"FoodCanTylersEmpty",
|
||||
"FoodCanUnlabeledEmpty",
|
||||
"FoodCanRusUnlabeledEmpty",
|
||||
"FoodCanRusPorkEmpty",
|
||||
"FoodCanRusPeasEmpty",
|
||||
"FoodCanRusMilkEmpty",
|
||||
"FoodCanRusCornEmpty",
|
||||
"FoodCanRusStewEmpty",
|
||||
"ItemSodaCokeEmpty",
|
||||
"ItemSodaPepsiEmpty",
|
||||
"ItemSodaMdewEmpty",
|
||||
"ItemSodaMtngreenEmpty",
|
||||
"ItemSodaR4z0rEmpty",
|
||||
"ItemSodaClaysEmpty",
|
||||
"ItemSodaSmashtEmpty",
|
||||
"ItemSodaDrwasteEmpty",
|
||||
"ItemSodaLemonadeEmpty",
|
||||
"ItemSodaLvgEmpty",
|
||||
"ItemSodaMzlyEmpty",
|
||||
"ItemSodaRabbitEmpty"
|
||||
};
|
||||
};
|
||||
};
|
||||
31
SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp
Normal file
31
SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
class MeleeFlashlight : Pistol {
|
||||
class ItemActions {
|
||||
class Toolbelt {
|
||||
text = $STR_ACTIONS_2TB;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemFlashlight : ItemCore {
|
||||
class ItemActions {
|
||||
class Toolbelt {
|
||||
text = $STR_ACTIONS_RFROMTB;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class MeleeFlashlightRed : MeleeFlashlight {
|
||||
class ItemActions {
|
||||
class Toolbelt {
|
||||
text = $STR_ACTIONS_2TB;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemFlashlightRed : ItemCore {
|
||||
class ItemActions {
|
||||
class Toolbelt {
|
||||
text = $STR_ACTIONS_RFROMTB;
|
||||
};
|
||||
};
|
||||
};
|
||||
3
SQF/dayz_code/Configs/CfgWeapons/Item/ItemCompass.hpp
Normal file
3
SQF/dayz_code/Configs/CfgWeapons/Item/ItemCompass.hpp
Normal file
@@ -0,0 +1,3 @@
|
||||
class ItemCompass: ItemCore {
|
||||
model="z\addons\dayz_communityassets\models\compass.p3d";
|
||||
};
|
||||
6
SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp
Normal file
6
SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp
Normal file
@@ -0,0 +1,6 @@
|
||||
//NotWorking _DZ Remove
|
||||
class ItemEtool: ItemCore {
|
||||
scope = 2;
|
||||
displayName = "Etool";
|
||||
descriptionShort = $STR_EQUIP_DESC_1;
|
||||
};
|
||||
24
SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp
Normal file
24
SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
class ItemFishingPole: ItemCore
|
||||
{
|
||||
scope=2;
|
||||
displayName="Fishing Pole";
|
||||
model="\z\addons\dayz_epoch\models\fishing_rod_loot_item.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa";
|
||||
descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm.";
|
||||
class ItemActions
|
||||
{
|
||||
class Toolbelt
|
||||
{
|
||||
text="Remove from Toolbelt";
|
||||
script="spawn player_addToolbelt;";
|
||||
use[]=
|
||||
{
|
||||
"ItemFishingPole"
|
||||
};
|
||||
output[]=
|
||||
{
|
||||
"MeleeFishingPole"
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
7
SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp
Normal file
7
SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp
Normal file
@@ -0,0 +1,7 @@
|
||||
class ItemKeyKit: ItemCore {
|
||||
scope = 2;
|
||||
displayname = "Keymakers kit";
|
||||
model="\z\addons\dayz_epoch\models\keykit.p3d";
|
||||
descriptionShort="Kit including the tools required to smelt, mold and shape keys.";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_keykit_ca.paa";
|
||||
};
|
||||
50044
SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeys.hpp
Normal file
50044
SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeys.hpp
Normal file
File diff suppressed because it is too large
Load Diff
3
SQF/dayz_code/Configs/CfgWeapons/Item/ItemMap.hpp
Normal file
3
SQF/dayz_code/Configs/CfgWeapons/Item/ItemMap.hpp
Normal file
@@ -0,0 +1,3 @@
|
||||
class ItemMap: ItemCore {
|
||||
model="z\addons\dayz_communityassets\models\map.p3d";
|
||||
};
|
||||
11
SQF/dayz_code/Configs/CfgWeapons/Item/ItemMap_Debug.hpp
Normal file
11
SQF/dayz_code/Configs/CfgWeapons/Item/ItemMap_Debug.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
class ItemMap_Debug: ItemCore {
|
||||
descriptionshort = "Debug Map - Admin use only";
|
||||
displayname = "Map";
|
||||
picture = "\ca\ui\data\gear_picture_map_ca.paa";
|
||||
scope = 2;
|
||||
simulation = "ItemMap";
|
||||
class Library {
|
||||
libtextdesc = "Debug Map - Admin use only";
|
||||
};
|
||||
};
|
||||
|
||||
8
SQF/dayz_code/Configs/CfgWeapons/Item/ItemShovel.hpp
Normal file
8
SQF/dayz_code/Configs/CfgWeapons/Item/ItemShovel.hpp
Normal file
@@ -0,0 +1,8 @@
|
||||
class ItemShovel: ItemCore
|
||||
{
|
||||
scope=2;
|
||||
displayName="Shovel";
|
||||
model="\z\addons\dayz_communityassets\models\shovel.p3d";
|
||||
picture="\z\addons\dayz_communityassets\pictures\equip_shovel_ca.paa";
|
||||
descriptionShort="Shovel";
|
||||
};
|
||||
3
SQF/dayz_code/Configs/CfgWeapons/Item/ItemWatch.hpp
Normal file
3
SQF/dayz_code/Configs/CfgWeapons/Item/ItemWatch.hpp
Normal file
@@ -0,0 +1,3 @@
|
||||
class ItemWatch: ItemCore {
|
||||
model="z\addons\dayz_communityassets\models\watch.p3d";
|
||||
};
|
||||
Reference in New Issue
Block a user