Package cofh.core.network

Examples of cofh.core.network.PacketSocial.addString()


    PacketSocial aPacket = new PacketSocial();
    aPacket.addByte(PacketTypes.FRIEND_LIST.ordinal());
    aPacket.addInt(friendConf.getCategory(thePlayer.getCommandSenderName().toLowerCase()).keySet().size());
    for (String theName : friendConf.getCategory(thePlayer.getCommandSenderName().toLowerCase()).keySet()) {
      aPacket.addString(theName);
    }
    PacketHandler.sendTo(aPacket, thePlayer);
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.