Examples of friendCount()


Examples of org.moparscape.msc.gs.model.Player.friendCount()

    long user = player.getUsernameHash();
    long friend = p.readLong();
    switch (pID) {
    case 168: // Add friend
      if (player.friendCount() >= 200) {
        player.getActionSender().sendMessage(
            "Your friend list is too full");
        return;
      }
      loginSender.addFriend(user, friend);
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.