Ejemplo n.º 1
0
 public static void HandleGameFightTurnStartMessage(Bot bot, GameFightTurnStartMessage message)
 {
 }
Ejemplo n.º 2
0
 public void HandleGameFightTurnStartMessage(Bot bot, GameFightTurnStartMessage message)
 {
     bot.Character.Fight.StartTurn(message.id);
 }
Ejemplo n.º 3
0
 public static void HandleGameFightTurnStartMessage(Bot bot, GameFightTurnStartMessage message)
 {
     if (!bot.Character.IsFighting())
         logger.Error("Received GameFightTurnStartMessage but character is not in fight !");
     else
         bot.Character.Fight.StartTurn(message.id);
 }