DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
RopeBelt.c
См. документацию.
2{
3 override void SetActions()
4 {
5 super.SetActions();
6
8 }
9
10 override bool CanPutInCargo( EntityAI parent )
11 {
12 if( !super.CanPutInCargo( parent ) )
13 {
14 return false;
15 }
16
17 return IsEmpty();
18 }
19
20 override bool CanReceiveAttachment( EntityAI attachment,int slotId )
21 {
22 if( !super.CanReceiveAttachment( attachment, slotId ) )
23 {
24 return false;
25 }
26
27 return !GetInventory().IsInCargo();
28 }
29};
ActionDeCraftRopeBeltCB ActionContinuousBaseCB ActionDeCraftRopeBelt()
Определения ActionDeCraftRopeBelt.c:14
void AddAction(typename actionName)
Определения AdvancedCommunication.c:220
override bool IsEmpty()
Определения FireplaceBase.c:2465
Определения LeatherBelt_ColorBase.c:2
Определения Building.c:6
override bool CanPutInCargo(EntityAI parent)
Определения RopeBelt.c:10
override void SetActions()
Определения RopeBelt.c:3
override bool CanReceiveAttachment(EntityAI attachment, int slotId)
Определения RopeBelt.c:20
Определения RopeBelt.c:2