CrazyManiac Posted May 7, 2010 Posted May 7, 2010 will be better if you can find Autoannouncements for GMs/Castle Lords/Heroes etc etc.....Btw nice job! Quote
kostakis450 Posted May 7, 2010 Posted May 7, 2010 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. Quote
Spidey* Posted May 30, 2010 Posted May 30, 2010 Useless share... No No it's very usefull, Very nice share, thanks Quote
Boorinio Posted June 3, 2010 Posted June 3, 2010 i just added in my pack and guess what it works :O anyway thanks for the share Quote
locpaulo Posted June 8, 2010 Posted June 8, 2010 ads are being given in the Chat .. GM And it becomes a mess ... because the server is PvP. Changing the ads as to Chat Superior (Where it shows the damage etc. ..) ??????? Quote
JustLikeMe Posted June 20, 2010 Posted June 20, 2010 @@ -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. Quote
liviudev Posted August 25, 2010 Posted August 25, 2010 Please some info... where i need to put this script, how i can run it.. ty and great share! ;) Quote
booosas Posted October 14, 2010 Posted October 14, 2010 Can i get auto shout of pvp kill? I want auto shout pvp kill to get LOGS about who killing who.. I will see Boxers etc, if anyone have others ideas pm me. Quote
mgoebelm Posted January 6, 2011 Posted January 6, 2011 Very very good, i use L2jserver revision 1434 and works perfectly. Thanks for share. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.