Page 1 of 1

PartyMatchRoom max level

Posted: Thu Dec 06, 2012 7:39 pm
by Topicus
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 5552 (H5 STABLE)
L2JDP Revision Number:

After 3 hours searching, without success i created this topic. My server is lvl max 90. But, how to change party room to accept lvls > 85? When we configure i.e. max lvl > 85, it shows only max lvl 85. And its not only visual, chars greater than 85 cant join.

Its client related?

Re: PartyMatchRoom max level

Posted: Fri Feb 01, 2013 10:04 pm
by Arang
Topicus wrote:If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 5552 (H5 STABLE)
L2JDP Revision Number:

After 3 hours searching, without success i created this topic. My server is lvl max 90. But, how to change party room to accept lvls > 85? When we configure i.e. max lvl > 85, it shows only max lvl 85. And its not only visual, chars greater than 85 cant join.

Its client related?
Try putting elephant in parrot cage, and then ask yourself is it cage related :D

Re: PartyMatchRoom max level

Posted: Sat Feb 02, 2013 7:24 am
by Zoey76
Test this and post the result:

Code: Select all

Index: java/com/l2jserver/gameserver/network/clientpackets/RequestListPartyMatchingWaitingRoom.java===================================================================--- java/com/l2jserver/gameserver/network/clientpackets/RequestListPartyMatchingWaitingRoom.java    (revision 5768)+++ java/com/l2jserver/gameserver/network/clientpackets/RequestListPartyMatchingWaitingRoom.java    (working copy)@@ -45,12 +45,11 @@    protected void runImpl()    {        L2PcInstance _activeChar = getClient().getActiveChar();-               if (_activeChar == null)        {            return;        }-       +       System.out.println("The max/min levels for the party room are: " + _maxlvl + "/" + _minlvl);        _activeChar.sendPacket(new ExListPartyMatchingWaitingRoom(_activeChar, _page, _minlvl, _maxlvl, _mode));    }