mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-18 17:42:01 +03:00
30 lines
525 B
C++
30 lines
525 B
C++
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" |