DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ IsWearingSplint()

bool ManBase::IsWearingSplint ( )
inlineprotected

См. определение в файле PlayerBase.c строка 3795

3796 {
3797 EntityAI attachment;
3798 Class.CastTo(attachment, GetItemOnSlot("Splint_Right"));
3799 if (attachment && attachment.GetType() == "Splint_Applied")
3800 {
3801 return true;
3802 }
3803 return false;
3804 }
class LogManager EntityAI
ItemBase GetItemOnSlot(string slot_type)
Returns item that's on this player's attachment slot. Parameter slot_type should be a string from con...
Определения PlayerBase.c:811

Перекрестные ссылки Class::CastTo() и GetItemOnSlot().