Jump to content
  • 0

Who Know Java Code Killing Spree


Question

Posted (edited)

Hallo Guys I want make killing spree

 

this code

 

ndex: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(revision 4638)
+++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(working copy)


@@ -243,6 +243,7 @@
import com.l2jserver.gameserver.network.serverpackets.UserInfo;
import com.l2jserver.gameserver.skills.AbnormalEffect;
import com.l2jserver.gameserver.skills.Env;
+import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage;
import com.l2jserver.gameserver.skills.Formulas;
import com.l2jserver.gameserver.skills.Stats;
import com.l2jserver.gameserver.skills.l2skills.L2SkillSiegeFlag;

@@ -5664,14 +5737,63 @@
	 * Increase the pvp kills count and send the info to the player
	 *
	 */
+		private int impro = 0;
	public void increasePvpKills(L2Character target)
	{
		if (target instanceof L2PcInstance
				&& AntiFeedManager.getInstance().check(this, target))
		{
+					impro++;
+					        
+					       switch(impro){
+					       
+					                case 3:
+			   				ExShowScreenMessage case3 = new ExShowScreenMessage("You reached 3 killing spree!", 10000);
+			   				sendPacket(case3);
+							Announcements.getInstance().announceToAll("Player: " + getName() + " :Just got a Triple Kill!");
+			   				break;
+			   				
+							case 5:
+			   				ExShowScreenMessage case5 = new ExShowScreenMessage("You reached 5 killing spree!", 10000);
+			   				sendPacket(case5);
+							Announcements.getInstance().announceToAll("Player: " + getName() + " :Just got an Ultra Kill!");
+			   				break;
+			   				
+							case 10:
+			   				ExShowScreenMessage case10 = new ExShowScreenMessage("You reached 10 killing spree!", 10000);
+			   				sendPacket(case10);
+			   				Announcements.getInstance().announceToAll("Player: " + getName() + " :reached 10 kill in a row!");
+			   				break;
+			   				
+							case 15:
+			  				ExShowScreenMessage case15 = new ExShowScreenMessage("You reached 15 killing spree!", 10000);
+			   				sendPacket(case15);
+			   				Announcements.getInstance().announceToAll("Player: " + getName() + " :reached 15 kill in a row!");
+			  				break;
+			   				
+							case 20:
+			   				ExShowScreenMessage case20 = new ExShowScreenMessage("You reached 20 killing spree!", 10000);
+			   				sendPacket(case20);
+			   				Announcements.getInstance().announceToAll("Player: " + getName() + " :reached 20 kill in a row!");
+			   				break;
+			  				
+							case 25:
+			   				ExShowScreenMessage case25 = new ExShowScreenMessage("You reached 25 killing spree!", 10000);
+			   				sendPacket(case25);
+			  				Announcements.getInstance().announceToAll("Player: " + getName() + " :reached 25 kill in a row!");
+			   				break;
+					          default:
+					           ;
+					        }
+				
+			


@@ -13495,6 +13639,8 @@
					setCurrentFeed(0);
					stopFeed();
					dismount();
+							
+							impro = 0;
					sendPacket(SystemMessage.getSystemMessage(SystemMessageId.OUT_OF_FEED_MOUNT_CANCELED));
				}

But not when he dies but with time  1 min 

 

impro = 0;  <<<< 1 min

 

Edited by MegaCheat

8 answers to this question

Recommended Posts

  • 1
Posted

 

Btw, you don't need to announce/screenmessage the pvp count in every line. 

  • Upvote 2
  • 0
Posted
1- You store a Future _spreeTask on the Player level (your impro variable should be named _impro, btw).
2 - You cancel it and relaunch it on every kill :

if (_spreeTask != null)
_spreeTask.cancel(false);

_spreeTask = ThreadPool.schedule(() -> _impro = 0, 60000L);

Basically, if you kill someone, it will cancel current task and reschedule it with a fresh timer. If you want to avoid to make one task per Player, you can also handled it using a Manager (similar to multiple other timed stuff : pvp, random animation timer, or even movement in default L2J...), where you register all Players on a 1sec task manager and test each of those every second.
  • Like 1
  • 0
Posted
9 hours ago, Tryskell said:

1- You store a Future _spreeTask on the Player level (your impro variable should be named _impro, btw).
2 - You cancel it and relaunch it on every kill :

if (_spreeTask != null)
_spreeTask.cancel(false);

_spreeTask = ThreadPool.schedule(() -> _impro = 0, 60000L);

Basically, if you kill someone, it will cancel current task and reschedule it with a fresh timer. If you want to avoid to make one task per Player, you can also handled it using a Manager (similar to multiple other timed stuff : pvp, random animation timer, or even movement in default L2J...), where you register all Players on a 1sec task manager and test each of those every second.

you talk to him like he is a casual Senior Java developer even tho you are right i dont think he will understand 😕

 

49 minutes ago, &#x27;Baggos&#x27; said:

 

Btw, you don't need to announce/screenmessage the pvp count in every line. 

nice job buddy

 

  • 0
Posted (edited)
3 hours ago, MegaCheat said:

thanks guys very mutch

the problem is chronical Hi5

Just changes the imports. Only in KillingSpreeTaskManager you get errors.

Remove imports, rename Player to L2PcInstance and press Ctrl + Shift + O

 

Instead of var change it to int

Remove:

World.announceToOnlinePlayers("Player " + getName() + ": reached " + value + " kills in a row!", true);

 

And put

Announcements.getInstance().announceToAll("Player " + getName() + ": reached " + value + " kills in a row!", true);

Edited by 'Baggos'
  • 0
Posted (edited)

private int _killCount;
private long _killTime;
 

public void increasePvpKills(L2Character target)
{
    if (target instanceof L2PcInstance && AntiFeedManager.getInstance().check(this, target))
    {

        if (_killTime < System.currentTimeMillis())
            _killCount = 0;
 

        _killCount++;
        _killTime = System.currentTimeMillis() + 60000L;

 
There is no need for any task @MegaCheat

Edited by StinkyMadness
  • Like 1
  • Thanks 1
  • Upvote 1
Guest
This topic is now closed to further replies.


  • Posts

    • @FixerRay the problem is that my dev will not be available for a while so if you could help that will be great 
    • Hello! I need help with the file lineageeffect.u (Interlude client) I need to remove ForcedLifeTime from the following skills:   Battle Heal Greater Major Heal Hurricane Solar Flare Hydro Blast Aura Bolt Aura Flare Aura Flash   Thank you in advance for your help!
    • Used to have the same issue managing all my masked files from different edits. What really helped me stay organized was this list: https://www.blueberry-ai.com/blog/12-best-digital-asset-management-software-for-photographers. Found a couple of tools there that make sorting, tagging, and finding assets way easier, especially when working on multiple projects or sharing with clients. Took a massive load off my workflow and saved me a lot of time digging through folders.
    • IBServer for L2OFF GF-H5-GD-Classic I’m excited to share IBServer, a fully standalone authentication and billing server designed for Lineage II Official (L2OFF) Generations Supporting Gracia Final (GF), High Five (H5), Glory Days (GD), and Classic Year(2018-2020).   Key features: 🔌 Real IB Communication: Integrates directly with the L2OFF client protocol for in‑band packet handling. ⚙️ Zero Client/Server Modification: No changes required to L2Server.exe, no extenders, no hooks — plug and play. 🛠️ ODBC SQL Server Support: Built‑in DBManager C++ class for handling premium points, purchases, and account data via stored procedures. 📦 Complete Packet API: Full implementation of RequestCheckVersion, GetPremiumItems, GetGamePoint, AddGamePoint, BuyItem, DeleteItem, etc. 🚀 Ready to Deploy: Simple config.txt for port and connection string, runs as a native Windows service or console app.   Price: $150 USD (one‑time payment, no licensing restrictions — use on as many PCs as you want)   How to purchase & support: Please reply here or send me a private message on MaxCheaters. I’ll provide a compiled binary along with installation instructions.
  • Topics

×
×
  • Create New...