Jump to content
  • 0

L2Pcinstance.java And Broadcastpacket(New Magicskilluse


Question

Posted

hi, i have problem with 

broadcastPacket(new MagicSkillUse(this, 5103, 1, 1000, 0));

in L2PcInstance my files is l2jserver freya rev. 4944 

 

I would like to for each kill, killer get effect that is mark him as killer 

little mess? if killer kill victim he get skilleffect as change subclass or change class.

 

so i put broadcast in l2pcinstance after 

public void increasePvpKills(L2Character target)

but no matter what i do the victim got effect not killer.

 

i had this effect some time ago (couple years ;p) in gracia final 

and that was:

 

 
L2PcInstance kill = (L2PcInstance) killer;
killer.broadcastPacket(new MagicSkillUse(this, 5103, 1, 1000, 0));
sendMessage("You have earned 1 PvP for kill" + kill.getName() + " and u have " + killer.getPvpKills() + " PvP");

and works perfectly, but now is changed everything and i have problem, cn some one give me tip or help me?

 

3 answers to this question

Recommended Posts

  • 0
Posted (edited)

Ummm ... You do not need this, I mean just put the broadcast line and msg, like

broadcastPacket(new MagicSkillUse(this, this, 5103, 1, 1000, 0));
sendMessage("You have earned 1 pvp for killing" + target.getName() + " and you have " + getPvpKills() + " pvp's");
Edited by SweeTs
Guest
This topic is now closed to further replies.


×
×
  • Create New...