Page 1 of 1

How to add xp to party?

Posted: Tue Jan 25, 2011 9:20 am
by xrs
L2J Revision Number:4487
L2JDP Revision Number:7760

How to add xp to players party members within l2pcinstance.java? I'm working on faction type server, and I need to give xp as a reward for pvp kills to all pp members. With items it's all clear: getParty().distributeItem(this, item); But what about xp? There is a function distributeXpAndSp, but cant find any info how to use it properly.

Re: How to add xp to party?

Posted: Tue Jan 25, 2011 8:14 pm
by Zoey76

Code: Select all

         for (L2PcInstance member : player.getParty().getPartyMembers())        {            member.addExpAndSp(addToExp, addToSp);        }