From ca1c827bd1ec259bbea2ed68160e5e04aa2b2889 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 9 Nov 2019 00:39:04 +0100 Subject: [PATCH] I added the guild channel --- Interfaces/UI_Mapa.cs | 6 +++--- Interfaces/UI_Principal.Designer.cs | 3 ++- Interfaces/UI_Principal.cs | 14 +++++++++----- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/Interfaces/UI_Mapa.cs b/Interfaces/UI_Mapa.cs index 16a046638..9c4b6b6ce 100644 --- a/Interfaces/UI_Mapa.cs +++ b/Interfaces/UI_Mapa.cs @@ -77,15 +77,15 @@ private void mapa_Control_Celda_Clic(CeldaMapa celda, MouseButtons botones, bool switch (cuenta.game.manager.movimientos.get_Mover_A_Celda(celda_destino, mapa.celdas_ocupadas())) { case ResultadoMovimientos.EXITO: - cuenta.logger.log_informacion("UI_MAPA", $"Personaje desplazado a la casilla: {celda_destino.cellId}"); + cuenta.logger.log_informacion("UI_MAP", $"Personnage se déplace à la cellule : {celda_destino.cellId}"); break; case ResultadoMovimientos.MISMA_CELDA: - cuenta.logger.log_Error("UI_MAPA", "El jugador está en la misma a la seleccionada"); + cuenta.logger.log_Error("UI_MAP", "Le joueur est dans la même cellule que le joueur sélectionné"); break; default: - cuenta.logger.log_Error("UI_MAPA", $"Error desplazando el personaje a la casilla: {celda_destino.cellId}"); + cuenta.logger.log_Error("UI_MAP", $"Erreur de déplacement à la cellule : {celda_destino.cellId}"); break; } } diff --git a/Interfaces/UI_Principal.Designer.cs b/Interfaces/UI_Principal.Designer.cs index d44b1e9d2..f0d66c38b 100644 --- a/Interfaces/UI_Principal.Designer.cs +++ b/Interfaces/UI_Principal.Designer.cs @@ -350,7 +350,8 @@ private void InitializeComponent() "General", "Recrutement", "Commerce", - "Message Privé"}); + "Message Privé", + "Guilde"}); this.comboBox_lista_canales.Location = new System.Drawing.Point(3, 3); this.comboBox_lista_canales.Name = "comboBox_lista_canales"; this.comboBox_lista_canales.Size = new System.Drawing.Size(130, 29); diff --git a/Interfaces/UI_Principal.cs b/Interfaces/UI_Principal.cs index 046335fcc..f9ac68847 100644 --- a/Interfaces/UI_Principal.cs +++ b/Interfaces/UI_Principal.cs @@ -217,17 +217,21 @@ private void textBox_enviar_consola_KeyDown(object sender, KeyEventArgs e) case 0://General cuenta.connexion.SendPacket("BM*|" + textBox_enviar_consola.Text + "|", true); break; - - case 1://Reclutamiento + + case 1://Recrutement cuenta.connexion.SendPacket("BM?|" + textBox_enviar_consola.Text + "|", true); break; - - case 2://Comercio + + case 2://Commerce cuenta.connexion.SendPacket("BM:|" + textBox_enviar_consola.Text + "|", true); break; - case 3://Mensaje privado + case 3://Message privé cuenta.connexion.SendPacket("BM" + textBox_nombre_privado.Text + "|" + textBox_enviar_consola.Text + "|", true); + break; + + case 4://Canal guilde + cuenta.connexion.SendPacket("BM%|" + textBox_enviar_consola.Text + "|",true); break; } break;