diff --git a/02_Windows_App/Perun_v1/01_Classes/DatabaseController.cs b/02_Windows_App/Perun_v1/01_Classes/DatabaseController.cs index 729c753..4de222d 100644 --- a/02_Windows_App/Perun_v1/01_Classes/DatabaseController.cs +++ b/02_Windows_App/Perun_v1/01_Classes/DatabaseController.cs @@ -114,6 +114,18 @@ public class DatabaseController case 3: PerunHelper.GUILogHistoryAdd(ref Globals.arrGUILogHistory, "Slots data updated", 1, 0, "3"); break; + case 50: + PerunHelper.GUILogHistoryAdd(ref Globals.arrGUILogHistory, "Player "+ strTCPFrame.payload.player + " chat message saved", 1, 0, "50"); + break; + case 51: + PerunHelper.GUILogHistoryAdd(ref Globals.arrGUILogHistory, "Game event: "+ strTCPFrame.payload.log_content, 1, 0, "51"); + break; + case 52: + PerunHelper.GUILogHistoryAdd(ref Globals.arrGUILogHistory, "Player "+ strTCPFrame.payload.stat_name + " stats saved", 1, 0, "52"); + break; + case 53: + PerunHelper.GUILogHistoryAdd(ref Globals.arrGUILogHistory, "Player "+ strTCPFrame.payload.login_name + " logged in", 1, 0, "53"); + break; case 100: PerunHelper.GUILogHistoryAdd(ref Globals.arrGUILogHistory, "SRS data send", 1,0,"100"); break;