Package simpleserver.message

Examples of simpleserver.message.GroupChat


        } catch (NumberFormatException e) {
          player.addTMessage(Color.RED, "Invalid group ID");
        }
      }

      player.setChat(new GroupChat(player, group));
    } else if (mode.equals("area")) {

      AreaChat room = new AreaChat(player);
      if (room.noArea()) {
        player.addTMessage(Color.RED, "You are in no area at the moment");
View Full Code Here


        sender.addTMessage(Color.RED, "Invalid group ID");
        return null;
      }
    }

    return new GroupChat(sender, group);
  }
View Full Code Here

TOP

Related Classes of simpleserver.message.GroupChat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.