item drop like adena
Posted: Wed Nov 09, 2011 3:10 am
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision 5069:
L2JDP Revision 8518:
hello everyone im trying to set some items share in party like adena .
i tryed use search in forum and i found some nice posts but they just helped me to get the idea how to do it.y.java
i opened L2Party.java
and i edited this line
and i edited like this
i did a lot of test i even searched google so i tryed with == or with != but nothing worked... with == none of items shared in party not event adena with != only adena shared like normal.... can anyone help me?
google says it must look like this
» Find Revision
L2J Revision 5069:
L2JDP Revision 8518:
hello everyone im trying to set some items share in party like adena .
i tryed use search in forum and i found some nice posts but they just helped me to get the idea how to do it.y.java
i opened L2Party.java
and i edited this line
Code: Select all
if (item.getItemId() == 57
Code: Select all
if (item.getItemId() == 57 && (item.getItemId() ==6393 && (item.getItemId() ==3483 && (item.getItemId() ==6673 && (item.getItemId() ==9143 && (item.getItemId() ==6393))))))
google says it must look like this
Code: Select all
if (x == 2 && y != 2) { System.out.println("Both conditions are true.");}