Jump to content

[share]Autoannounce Pk, PvP and All kills


Recommended Posts

what do you mean only the part of pvp working ? oO

it announce only the pvp kills and no the pk kills?

.That's right.I don't know what is going on and if i have make somewhere a mistake.I looked the code 5 or 6 times and didn't find somewhere a mistake.
Link to comment
Share on other sites

  • 4 weeks later...
  • 2 weeks later...
@@ -4446,6 +4447,9 @@

      )

      {

            increasePvpKills();

+            if ( target instanceof L2PcInstance && Config.ANNOUNCE_PVP_KILL ) // Announces a PvP kill

+               Announcements.getInstance().announceToAll("Player "+this.getName()+" hunted Player "+target.getName());

+            return;

      }

      else                                                                        // Target player doesn't have pvp flag set

      {

@@ -4458,6 +4462,10 @@

                    {

                        // 'Both way war' -> 'PvP Kill'

                        increasePvpKills();

+                        if ( target instanceof L2PcInstance && Config.ANNOUNCE_PVP_KILL ) // Announces a PvP kill

+                           Announcements.getInstance().announceToAll("Player "+this.getName()+" hunted Player "+target.getName());

+                        else if ( target instanceof L2PcInstance && Config.ANNOUNCE_ALL_KILL ) // Announces a kill

+                           Announcements.getInstance().announceToAll("Player "+this.getName()+" killed Player "+target.getName());

                        return;

                    }

                }

@@ -4469,13 +4477,19 @@

            if ( Config.KARMA_AWARD_PK_KILL )

            {

                    increasePvpKills();

+                    if ( target instanceof L2PcInstance && Config.ANNOUNCE_PVP_KILL ) // Announces a PvP kill

+                       Announcements.getInstance().announceToAll("Player "+this.getName()+" hunted Player "+target.getName());

            }

         }

         else if (targetPlayer.getPvpFlag() == 0)                                                                    // Target player doesn't have karma

         {

                increasePkKillsAndKarma(targetPlayer.getLevel());

+                if ( target instanceof L2PcInstance && Config.ANNOUNCE_PK_KILL ) // Announces a Pk kill

+                   Announcements.getInstance().announceToAll("Player "+this.getName()+" has assassinated Player "+target.getName());

         }

      }

+      if ( target instanceof L2PcInstance && Config.ANNOUNCE_ALL_KILL ) // Announces a kill

+         Announcements.getInstance().announceToAll("Player "+this.getName()+" killed Player "+target.getName());

   }

 

This is the last part of the code of the first post in which I have some problems, because i already have

 

increasePvpKills(target);

else

// Target player doesn't have pvp flag set

{

// check about wars

if (targetPlayer.getClan() != null && getClan() != null

&& getClan().isAtWarWith(targetPlayer.getClanId())

&& targetPlayer.getClan().isAtWarWith(getClanId())

&& targetPlayer.getPledgeType() != L2Clan.SUBUNIT_ACADEMY

&& getPledgeType() != L2Clan.SUBUNIT_ACADEMY)

 

and if i add

+            if ( target instanceof L2PcInstance && Config.ANNOUNCE_PVP_KILL ) // Announces a PvP kill

+               Announcements.getInstance().announceToAll("Player "+this.getName()+" hunted Player "+target.getName());

+            return;

under increasePvpKills(target); else will have error. Where should i put that, i'm using Epilogue.

Link to comment
Share on other sites

  • 1 month later...
  • 3 weeks later...
  • 1 month later...
  • 2 months later...
  • 6 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock