Ey man, is suggest you apply the patch manually, here is a link to the wiki that say how to do it.
http://www.l2jserver.com/wiki/How_to_Apply_a_Patch
the example is
Code: Select all
Index: java/net/sf/l2j/gameserver/clientpackets/SendWareHouseWithDrawList.java===================================================================--- com/l2jserver/gameserver/clientpackets/SendWareHouseWithDrawList.java (revision 353)+++ com/l2jserver/gameserver/clientpackets/SendWareHouseWithDrawList.java (working copy)@@ -99,7 +99,9 @@ } } - if (finalCount > PcInventory.MAX_ITEMS)+ // ootz0rz+ // allow GMs to have unlimited inventory+ if (finalCount > PcInventory.MAX_ITEMS && !activeChar.isGM()) { for (int i = 0; i < items.length; i++)
for example, you need to go a the location that is above jcom/l2jserver/gameserver/clientpackets/SendWareHouseWithDrawList.java
In this location you will find the file that you need to modify.
The symbol - means that you need to delete the line where it is
The symbol + means that you need to add de line where it is
Always there are lines without any symbols, I use it to find the line that I need to delete or add
Will be easy, just open the notepad, edit-find, write the line that has for example the symbol -m delete it, and add the others....in other case, copy the line that is just for reference find- and to whatever it need to be done.
Well I hope that this can helpm
bye