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

◆ PrintUpdate()

void PrintUpdate ( )
protected

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

382 {
383 Print("================================");
384 for(int i = 0; i < m_StomachContents.Count(); i++)
385 {
386 string itemname = m_StomachContents.Get(i).m_ClassName;
387 float amount = m_StomachContents.Get(i).GetAmount();
388 int food_stage = m_StomachContents.Get(i).GetFoodStage();
389 int agents = m_StomachContents.Get(i).m_Agents;
390 Print(">");
391 Print("itemname:" + itemname);
392 Print("amount:" + amount);
393 Print("food_stage:" + food_stage);
394 Print("agents:" + agents);
395 Print(">");
396 }
397 Print("m_StomachVolume:" + m_StomachVolume);
398 Print("================================");
399 }
ref array< ref StomachItem > m_StomachContents
Определения PlayerStomach.c:132
float m_StomachVolume
Определения PlayerStomach.c:137
proto void Print(void var)
Prints content of variable to console/log.

Перекрестные ссылки m_StomachContents, m_StomachVolume и Print().