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

◆ GetDebugText()

override string Land_WarheadStorage_Main::GetDebugText ( )
inlineprotected

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

402 {
403 string debug_output;
404
405 if( g_Game.IsServer())
406 {
407 debug_output = "IsDoorOpen(4) " + IsDoorOpen(4)+ "\n";
408 debug_output += "IsDoorOpen(5) " + IsDoorOpen(5)+ "\n";
409 debug_output += "IsDoorOpen(6) " + IsDoorOpen(6)+ "\n";
410 debug_output += "IsDoorOpen(7) " + IsDoorOpen(7)+ "\n";
411 }
412 else
413 {
414 debug_output = "this is client";
415 }
416 return debug_output;
417 }
DayZGame g_Game
Определения DayZGame.c:3942
proto native bool IsDoorOpen(int index)
When the door is requested to be fully open (animation wanted phase is greater than 0....

Перекрестные ссылки g_Game и Building::IsDoorOpen().