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

◆ GatherAllRecords()

void GatherAllRecords ( )

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

75 {
76 /*
77 FileHandle file = OpenFile("$profile:StatRecords.log", FileMode.WRITE);
78
79 FPrintln(file, "================================================================");
80 FPrintln(file," ================== " + m_Player.ToString() +" ================== ");
81 FPrintln(file, "================================================================");
82
83 for(int i = 0; i < m_PlayerStats.Count(); i++)
84 {
85 array<PlayerStatRecord> records = m_PlayerStats.Get(i).GetRecords();
86
87 FPrintln(file, m_PlayerStats.Get(i).GetLabel() );
88
89 for(int z = 0; z < records.Count(); z++)
90 {
91 PlayerStatRecord record = records.Get(z);
92 string output = record.GetStringOutput();
93 FPrintln(file, output);
94 }
95 }
96 */
97 }