Jump to content

Recommended Posts

Posted

If you apply the patch you can:

enable/disable pk and pvp reward

set new reward item by itemId for pk/pvp

enable/disable a costum message after pvp and pk

after pvp:"Good fight,enemy pwned:)"

after pk:"Nice kill!You are so dangerous!"

you can use my alternative PK system that means:

for pk kill you get +1pvp point and no karma i think its usefull for a GvE system for example

 

 

 

Index: D:/Aqua/mid-core/config/pvp.properties
===================================================================
--- D:/Aqua/mid-core/config/pvp.properties	(revision 5153)
+++ D:/Aqua/mid-core/config/pvp.properties	(working copy)
@@ -41,4 +41,29 @@
# Length one stays in PvP mode after hitting a purple player (in ms)
PvPVsPvPTime = 60000

-CursedWeaponNpcInteract = False
\ No newline at end of file
+CursedWeaponNpcInteract = False
+
+# -------------------------------------------------------------
+# Costum PVP/PK settings
+# -------------------------------------------------------------
+# Costum pvp/pk message
+# after pvp: "Good fight,enemy pwned:)"
+# after pk: "Nice kill!You are so dangerous!"
+AllowCostumPvPMessage = True
+# Pvp reward system
+AllowPvpRewardSystem = False
+# Pvp reward itemId
+PvpRewardItem = 57
+# Pvp reward a-beep-t
+PvpRewardA-beep-t = 1
+# Pk reward system
+AllowPkRewardSystem = False
+# Pk reward itemId
+PkRewardItem = 57
+# Pk reward a-beep-t
+PkRewardA-beep-t = 1
+# Allow the default PK system(+1 pk,+karma)
+UseDefaultSystem = True
+# Allow costum pk system (pvp point for pk,no karma)
+# UseDefaultSystem need to be False!
+UseCostumSystem = False
\ No newline at end of file
Index: D:/Aqua/mid-core/src/main/java/com/l2jfree/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- D:/Aqua/mid-core/src/main/java/com/l2jfree/gameserver/model/actor/instance/L2PcInstance.java	(revision 5153)
+++ D:/Aqua/mid-core/src/main/java/com/l2jfree/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -5325,7 +5325,16 @@

		// Add karma to attacker and increase its PK counter
		setPvpKills(getPvpKills() + 1);
-
+		if(Config.ALLOW_PVP_REWARD)
+		{
+			// Item Reward system
+			addItem("Loot", Config.PVP_REWARD_ITEM, Config.PVP_REWARD_COUNT, this, true);
+			sendMessage("You will be rewarded for pvp kill!");
+		}
+		if(Config.COSTUM_MSG_ALLOWED)
+		{
+			sendMessage("Good fight,enemy pwned:)");
+		}
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
@@ -5380,9 +5389,25 @@
			newKarma = Integer.MAX_VALUE - getKarma();

		// Add karma to attacker and increase its PK counter
-		setPkKills(getPkKills() + 1);
-		setKarma(getKarma() + newKarma);
-
+		if(Config.DEFAULT_PK_SYSTEM)
+		{
+			setPkKills(getPkKills() + 1);
+			setKarma(getKarma() + newKarma);
+		}
+		if(Config.COSTUM_PK_SYSTEM)
+		{
+			setPvpKills(getPvpKills() + 1);
+		}
+		if(Config.ALLOW_PK_REWARD)
+		{
+			// Item Reward system
+			addItem("Loot", Config.PK_REWARD_ITEM, Config.PK_REWARD_COUNT, this, true);
+			sendMessage("You will be rewarded for pk kill!");
+		}
+		if(Config.COSTUM_MSG_ALLOWED)
+		{
+			sendMessage("Nice kill!You are so dangerous!");
+		}
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
Index: D:/Aqua/mid-core/src/main/java/com/l2jfree/Config.java
===================================================================
--- D:/Aqua/mid-core/src/main/java/com/l2jfree/Config.java	(revision 5153)
+++ D:/Aqua/mid-core/src/main/java/com/l2jfree/Config.java	(working copy)
@@ -689,6 +689,16 @@
	public static int				PVP_PVP_TIME;														// Duration (in ms) while a player stay in PVP mode
	// after hitting a purple player
	public static boolean			CURSED_WEAPON_NPC_INTERACT;
+	
+	public static boolean			COSTUM_MSG_ALLOWED;
+	public static boolean			ALLOW_PVP_REWARD;
+	public static int				PVP_REWARD_ITEM;
+	public static int				PVP_REWARD_COUNT;
+	public static boolean			ALLOW_PK_REWARD;
+	public static int				PK_REWARD_ITEM;
+	public static int				PK_REWARD_COUNT;
+	public static boolean			DEFAULT_PK_SYSTEM;
+	public static boolean			COSTUM_PK_SYSTEM;

	// *******************************************************************************************
	public static void loadPvpConfig()
@@ -732,6 +742,18 @@
			PVP_PVP_TIME = Integer.parseInt(pvpSettings.getProperty("PvPVsPvPTime", "60000"));
			PVP_TIME = PVP_NORMAL_TIME;
			CURSED_WEAPON_NPC_INTERACT = Boolean.parseBoolean(pvpSettings.getProperty("CursedWeaponNpcInteract", "false"));
+			
+			//Costum PVP/PK Message - Start
+			COSTUM_MSG_ALLOWED = Boolean.parseBoolean(IntrepidSettings.getProperty("AllowCostumPvPMessage", "True"));
+			ALLOW_PVP_REWARD = Boolean.parseBoolean(IntrepidSettings.getProperty("AllowPvpRewardSystem", "False"));
+			PVP_REWARD_ITEM = Integer.parseInt(IntrepidSettings.getProperty("PvpRewardItem", "57"));
+			PVP_REWARD_COUNT = Integer.parseInt(IntrepidSettings.getProperty("PvpRewardA-beep-t", "1"));
+			ALLOW_PK_REWARD = Boolean.parseBoolean(IntrepidSettings.getProperty("AllowPkRewardSystem", "False"));
+			PK_REWARD_ITEM = Integer.parseInt(IntrepidSettings.getProperty("PkRewardItem", "57"));
+			PK_REWARD_COUNT = Integer.parseInt(IntrepidSettings.getProperty("PkRewardA-beep-t", "1"));
+			DEFAULT_PK_SYSTEM = Boolean.parseBoolean(IntrepidSettings.getProperty("UseDefaultSystem", "True"));
+			COSTUM_PK_SYSTEM = Boolean.parseBoolean(IntrepidSettings.getProperty("UseCostumSystem", "False"));
+			//Costum PVP/PK Message - End

		}
		catch (Exception e)

Posted

The ugly truth is that the important question here is if has it been hundred or thousand times shared before.

But all shares should be respected, gj.

  • 3 weeks later...

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.

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.



  • Posts

    • Dear players, Open beta test for C3 begins today at 19:00 server time (GMT +2). 💰 All participants who find bugs during OBT will be rewarded with Coin of Luck (CoL): - 1 CoL for each staticmesh issue found — e.g., walking through textures, etc., - 2 CoL or more for server-side issues, depending on their severity., We strongly recommend reviewing the quest list - when switching to Chronicle 3, the total number of quests should match the number shown in the upper right corner of the window and correspond to the quest count from Chronicle 2. To log into the game, use the same data you use to access the Airin server. 📌 Download client: Google Drive
    • 🔥 Sale Alert! 🔥 Twitter Accounts with 50 Followers — now on SALE! Looking to launch a project or warm up your account base fast? We’ve got starter Twitter accounts with ~50 followers at a sweet price. 💰 Limited-time offer – while stock lasts! ✅ Organic-Looking ✅ Clean & Safe ✅ Perfect for boosting credibility 📦 Instant delivery
    • Dear friends, right now we are holding a grand competition with a prize fund of more than $ 1000 in our stores https://socnet.store , telegram store: https://socnet.shop and SMM panel: https://socnet.pro There are more than 50 prize places in our competition, each lucky person can take one of the places. Important condition: you must make a purchase at any time before June 1, 2025. The more purchases you make - the more chances you have to win the main prize in the community of $ 300! ➡ Our Online Shop: socnet.store  ➡ Our SMM-Boosting Panel: socnet.pro  ➡ Telegram Shop Bot: socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: solomonbog@socnet.store 
    • Dear friends, right now we are holding a grand competition with a prize fund of more than $ 1000 in our stores https://socnet.store , telegram store: https://socnet.shop and SMM panel: https://socnet.pro There are more than 50 prize places in our competition, each lucky person can take one of the places. Important condition: you must make a purchase at any time before June 1, 2025. The more purchases you make - the more chances you have to win the main prize in the community of $ 300! ➡ Our Online Shop: socnet.store  ➡ Our SMM-Boosting Panel: socnet.pro  ➡ Telegram Shop Bot: socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: 79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: 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