mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
CFG WEAPONS DONE
This commit is contained in:
43
SQF/dayz_code/Configs/CfgMagazines/Items/CamoNet.hpp
Normal file
43
SQF/dayz_code/Configs/CfgMagazines/Items/CamoNet.hpp
Normal file
@@ -0,0 +1,43 @@
|
||||
class ItemCamoNet : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem * 3;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\packed_net_green.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_packed_net_green_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_CAMONET;
|
||||
descriptionShort = $STR_ITEM_DESC_CAMONET;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_BUILD_CAMONET;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemCamoNet"};
|
||||
create = "CamoNet_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/*class ItemCamoNetGrey : ItemCamoNet
|
||||
{
|
||||
model = "\z\addons\dayz_communityassets\models\packed_net_gray.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_packed_net_gray_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_CAMONET;
|
||||
descriptionShort = $STR_ITEM_DESC_CAMONET;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_BUILD_CAMONET;
|
||||
script = "; ['ItemCamoNetGrey','Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemCamoNetGrey"};
|
||||
create = "CamoNet_DZ";
|
||||
};
|
||||
};
|
||||
};*/
|
||||
Reference in New Issue
Block a user