mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-19 14:42:56 +03:00
CFG WEAPONS DONE
This commit is contained in:
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Camo.hpp
Normal file
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Camo.hpp
Normal file
@@ -0,0 +1,6 @@
|
||||
class Skin_Camo1_DZ : SkinBase
|
||||
{
|
||||
scope = public;
|
||||
displayName = $STR_EQUIP_NAME_CAMO;
|
||||
descriptionShort = $STR_EQUIP_DESC_CAMO;
|
||||
};
|
||||
30
SQF/dayz_code/Configs/CfgMagazines/Clothing/Clothing.hpp
Normal file
30
SQF/dayz_code/Configs/CfgMagazines/Clothing/Clothing.hpp
Normal file
@@ -0,0 +1,30 @@
|
||||
class SkinBase : CA_Magazine
|
||||
{
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\cloth_parcel.p3d";
|
||||
picture = "\dayz_equip\textures\equip_cloth_parcel_ca.paa";
|
||||
|
||||
Craftoutput = "equip_rag";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Use
|
||||
{
|
||||
text = $STR_EQUIP_TEXT_CLOTHES;
|
||||
script = "spawn player_wearClothes;";
|
||||
};
|
||||
|
||||
class tearClothes
|
||||
{
|
||||
text = "Tear Clothes";
|
||||
script = "spawn player_tearClothes;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
#include "Ghillie.hpp"
|
||||
#include "Camo.hpp"
|
||||
#include "Soldier.hpp"
|
||||
#include "Survivor.hpp"
|
||||
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Ghillie.hpp
Normal file
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Ghillie.hpp
Normal file
@@ -0,0 +1,6 @@
|
||||
class Skin_Sniper1_DZ : SkinBase
|
||||
{
|
||||
scope = public;
|
||||
displayName = $STR_EQUIP_NAME_GHILLIE;
|
||||
descriptionShort = $STR_EQUIP_DESC_GHILLIE;
|
||||
};
|
||||
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Soldier.hpp
Normal file
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Soldier.hpp
Normal file
@@ -0,0 +1,6 @@
|
||||
class Skin_Soldier1_DZ : SkinBase
|
||||
{
|
||||
scope = public;
|
||||
displayName = $STR_EQUIP_NAME_SOLDIER;
|
||||
descriptionShort = $STR_EQUIP_DESC_SOLDIER;
|
||||
};
|
||||
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Survivor.hpp
Normal file
6
SQF/dayz_code/Configs/CfgMagazines/Clothing/Survivor.hpp
Normal file
@@ -0,0 +1,6 @@
|
||||
class Skin_Survivor2_DZ : SkinBase
|
||||
{
|
||||
scope = public;
|
||||
displayName = $STR_EQUIP_NAME_CIV;
|
||||
descriptionShort = $STR_EQUIP_DESC_CIV;
|
||||
};
|
||||
Reference in New Issue
Block a user