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

    • https://jumpshare.com/share/kIdeKALOhgtMKpBKqxpg Test Equip Armors-> FullPlate, Gloves, Legs, Chest , Boots
    • 黑色星期五 — 为您的流量提供高级福利 仅在11月28日,我们的特别促销码可为您提供13%的商店折扣。 促销码: BLACKFRIDAY (13% 折扣) 您可以通过我们的网站或 Telegram 机器人在商店购物! 有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram Messenger 方便访问商店。 其他服务: 虚拟号码服务: 前往 用于购买 Telegram Stars 的机器人: 前往 – 快速且优惠地在 Telegram 中购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们向您呈现当前的 促销和特惠活动 列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣 — 只需在我们网站注册后发送您的用户名,格式如下:“SEND ME BONUS, MY USERNAME IS...” — 您需要在我们的论坛帖子中写下这句话! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(支持)提交主题为“Get Trial Bonus”的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人每周都会举办 Telegram Stars 抽奖活动! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Usually, I work alone on my projects, but sometimes the work is much more than I've expected. Could you provide a price list? It would be good if we knew your price before contacting you. 
    • BLACK FRIDAY — PREMIUM BENEFITS FOR YOUR TRAFFIC Only on November 28 our special promo code gives you a 13% discount in the store. PROMO CODE: BLACKFRIDAY (13% Discount) Shop in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go Store Telegram bot: Go – convenient access to the store via Telegram messenger. Other services: Virtual numbers service: Go Telegram bot for purchasing Telegram Stars: Go – fast and profitable purchase of stars in Telegram. SMM Panel: Go – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service's products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject "Get Trial Bonus" on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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