Examples of PartyMatchingRoom


Examples of lineage2.gameserver.model.matching.PartyMatchingRoom

      return;
    }
    MatchingRoom room = player.getMatchingRoom();
    if (room == null)
    {
      new PartyMatchingRoom(player, _minLevel, _maxLevel, _maxMembers, _lootDist, _roomTitle);
    }
    else if ((room.getId() == _roomId) && (room.getType() == MatchingRoom.PARTY_MATCHING) && (room.getLeader() == player))
    {
      room.setMinLevel(_minLevel);
      room.setMaxLevel(_maxLevel);
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.