Jump to content

Recommended Posts

Posted

Hello in HoN (Heroes of Newerth) there is a number Called KD (Kills / Deaths)

This is like a rank system in the game, if u have a bad KD then it means u are kinda bad

So ive made a code for L2 that shows the Player's KD

The Code Is Based To Deaths Counter (http://www.maxcheaters.com/topic/137616-sharedeaths-counter/?hl=%2Bdeaths+%2Bcount) (Not Full!)

The Code Is For H5 (Fandc Project), Not Tested

### Eclipse Workspace Patch 1.0
#P OFandC2
Index: java/l2f/gameserver/model/Player.java
===================================================================
--- java/l2f/gameserver/model/Player.java	(revision 15)
+++ java/l2f/gameserver/model/Player.java	(working copy)
@@ -1018,6 +1018,9 @@
 	_hairStyle,
 	_hairColor;
 
+	private int _deaths; // how many times died character after login
+	private int _kd; // kills / deaths
+	
 	private int _recomHave,
 	_recomLeftToday,
 	_fame;
@@ -1557,6 +1560,43 @@
 		return item;
 	}
 
+		public int getDeaths()
+		{
+			return _deaths;
+		}
+		/**
+		 * Increase the deaths
+		 */
+	public void increaseDeaths()
+		{
+			setDeaths(getDeaths() + 1);
+		}
+	
+		public void setDeaths(int deaths)
+		{
+			_deaths = deaths;
+		}	
+	
+		public void setKd(int KD)
+		{
+			_kd = KD;
+		}	
+		
+		public int KD()
+		{
+			return _kd;
+		}
+		
+		public void setKd()
+		{
+			setKd(_pvpKills / _deaths);
+		}
+	 	
+	public void VKDcmd()
+	{
+		sendMessage("You' re KD is" + _kd + "");
+	}
+	
 	public void addAutoSoulShot(Integer itemId)
 	{
 		_activeSoulShots.add(itemId);
@@ -3613,7 +3653,7 @@
 		}
 
 		List<ItemInstance> drop = new LazyArrayList<ItemInstance>(), // total array with the results of the  choice
-		dropItem = new LazyArrayList<ItemInstance>(), dropEquip = new LazyArrayList<ItemInstance>(), dropWeapon = new LazyArrayList<ItemInstance>(); // временные
+		dropItem = new LazyArrayList<ItemInstance>(), dropEquip = new LazyArrayList<ItemInstance>(), dropWeapon = new LazyArrayList<ItemInstance>(); // Π²Ρ€ΠµΠΌΠµΠ½Π½Ρ‹Πµ
 
 		getInventory().writeLock();
 		try
@@ -5870,9 +5910,9 @@
 	}
 
 	/**
-	 * Возвращает тип используемого склада.
+	 * ВозвращаеСβ€� Π΅β€�Π Ρ‘Π Ρ— Π Ρ‘Π΅ΠƒΠ Ρ—Π Ρ•Π Β»Π΅Π�Π Β·Π΅Ρ“Π ΒµΠ Ρ�Π Ρ•Π Ρ–Π Ρ• Π΅ΠƒΠ Ρ”Π Β»Π Β°Π �‘Π Β°.
 	 * 
-	 * @return null или тип склада:<br>
+	 * @return null Π Ρ‘Π Β»Π Ρ‘ Π΅β€�Π Ρ‘Π Ρ— Π΅ΠƒΠ Ρ”Π Β»Π Β°Π �‘Π Β°:<br>
 	 *         <ul>
 	 *         <li>WarehouseType.PRIVATE
 	 *         <li>WarehouseType.CLAN
Index: java/l2f/gameserver/handler/voicecommands/impl/KDcmd.java
===================================================================
--- java/l2f/gameserver/handler/voicecommands/impl/KDcmd.java	(nonexistent)
+++ java/l2f/gameserver/handler/voicecommands/impl/KDcmd.java	(working copy)
@@ -0,0 +1,25 @@
+package l2f.gameserver.handler.voicecommands.impl;
+
+import l2f.gameserver.handler.voicecommands.IVoicedCommandHandler;
+import l2f.gameserver.model.Player;
+
+public class KDcmd
+  implements IVoicedCommandHandler
+{
+private String[] VOICED_COMMANDS = { "kd"};
+
+  public boolean useVoicedCommand(String command, Player activeChar, String text)
+  {
+    Player _kd = null;
+    if (command.startsWith("kd"))
+    	activeChar.sendMessage("You 're KD is" + _kd +"");
+	return true;
+   
+  }
+
+
+public String[] getVoicedCommandList()
+  {
+    return VOICED_COMMANDS;
+  }
+}
\ No newline at end of file

Creits: Me And EdenEternal For The Deaths Counter Code

Posted

I love the way you are avoiding my question, so Imma quote it.. :D

 

You know that this code can't work, right?

Posted

And what if player log out? What if server restart? Where you store those in player's ass?

Also whats the difference from the main topic? Nothing.  Lets analyze the mistakes in your topic.

 

  1. You use FandC which mean you spend lots of time downloading project and leeching codes (reference to your project)
  2. Your code has no difference at all from the main code that is a copy from some other code that is a copy from some other code. Copy -> Copy -> Copy the only change is the Eclipse path.
  3. The ironic moment when 98% of community work with L2J and it does not support VC. At least you should include the VC code to add it or make it UC.
  4. "Do not post simple java strings or stupid configuration codes. Such topics will be immediately locked" <-- rules.. Now i know that good java codes are junked cause is 4-5 lines but still this is like a "configuration" since you just set var and get var.
  5. Credits for.. i guess the patch?
  6. K/D reset if player log out or server restart.
  7. We are currently in 2k16 and still sharing setPk  getPk codes. In 2007 people used to share whole engines and big scripts but 7 years (almost 8) years later people share 2 lines of code that are just copy paste from 2007 cause logic.
  8. Heroes of newearth ! (If i could sin you right now u would be over 9999999)
  9. Elfo is like "access don't bother forum members who try make this community a better place" and hit mute button on me. 
  10. Nothing i just wanted to finish with 10 :3
Guest
This topic is now closed to further replies.


  • Posts

    • My official facebook profile!: https://www.facebook.com/spectrumL2 Specifications: Revamped L2JACIS revision FROM the core Private project!!! Revision that has been receiving corrections for over 3 years!!! Events already installed in the revision: TVT CTF KTB PARTY FARM SPOIL EVENT CRAZY RATES TOURNAMENT TIME ZONE (INSTANCE) All working correctly!!! SIEGE ESSENTIAL FEATURES: Walls fix Gates fix Flags fix 100% functional: OLYMPIADS: Implemented settings Hero receives enchanted Weapons with equal status PvP Weapons Optional /true/false Hero can acquire all Hero Weapons Optional true/false OTHER IMPLEMENTATIONS: Teleport fixed (directly to Giran) Teleport effect classic Vip skins vip collor name Pack NPCs with effect already configured BOSES already configured Mobs already configured CLASS BALANCE SPECIAL SYSTEM We have a SPECIAL system developed for Class Balance with only 1 digit in XML %tage of configurable debuffs Player limitation system in BOSES or PvP zones BS blocking system in FLEG zones or events Among others dozens of improvements made in the review... price: 390 USD !  OBS: WE CAN CHANGE THE BANNER AND NAME OF THE SERVICE TO THE ONE OF YOUR PREFERENCE BUT THE SETTINGS MUST BE KEPT ANY CHANGES REQUIRE ADDITION        
    • Server is Online – 1,000+ Active Players! We’re excited to announce the addition of a Europe Proxy to improve connectivity for our EU players! Clans can now benefit from VIP Access to help you catch up faster. 🎯 If you're a clan leader with at least 9 active members, join our Discord and open a ticket to claim your VIP rewards!  
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
  • Topics

×
×
  • 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