Jump to content

Recommended Posts

Posted

Hello guys, this is my first java share. So please dont be strict :>. Since i dont know how to make a diff patch (and im sry for this), I will share it with an other way.

Explanation: When you win a pvp, a custom message will comes only to your main chat (you choose this) and also you automatically do a winning social move.

 

Go to ->> /L2_GameServer_it/java/config/other.properties

#------------------------------------------
# Death Penalty chance if killed by mob (%)
#------------------------------------------
DeathPenaltyChance = 20

+--------------------------
+# Custom PvP Win
+--------------------------
+# PvP Win Message
+AllowPvPWinMessage = True 
+Message = Your Message Here
+AllowSocialWinMove = True

Go to ->> L2_GameServer_it/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java

		// Add karma to attacker and increase its PK counter
		setPvpKills(getPvpKills() + 1);
-
+		if(Config.ALLOW_PVP_WIN_MESSAGE)
+		{
+			activeChar.sendMessage("Config.MESSAGE");;
+		}
+		if(Config.ALLOW_SOCIAL_WIN_MOVE)
+		{
+			activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 3));
+		}

Go to ->> L2_GameServer_it/java/net/sf/l2j/Config.java

   public static int     MIN_PROTOCOL_REVISION;
   public static int     MAX_PROTOCOL_REVISION;
+
+   public static boolean	ALLOW_PVP_WIN_MESSAGE;
+   public static String          MESSAGE;
+   public static boolean	ALLOW_SOCIAL_WIN_MOVE;

   STARTING_ADENA                      = Integer.parseInt(otherSettings.getProperty("StartingAdena", "100"));
+               ALLOW_PVP_WIN_MESSAGE = Boolean.parseBoolean(otherSettings.getProperty("AllowPvPWinMessage", "True"));
+               MESSAGE = otherSettings.getProperty("Message", "Your Message Here");
+		ALLOW_SOCIAL_WIN_MOVE = Boolean.parseBoolean(otherSettings.getProperty("AllowSocialWinMove", "True"));

 

That is all, if you have any questions, feel free to ask them.

 

P.S: Is there a guide about how to make a diff patch? I surely need it. Thank you.

Posted

P.S: Is there a guide about how to make a diff patch? I surely need it. Thank you.

 

Eclipse -> Folder -> Right click on the package you want -> Team -> Create Patch

Posted

sendMessage("+Config.MESSAGE+");

 

whats this abstractionismn?

 

True, I just realised it.

Where's the message string config btw?

Posted

Sorry, but i cant understand what you are saying, as i said im very newbie.

Do you mean that i have to "apply" the message config like i did with the others?

Posted

Once you parse the config at start up, Config.Message is alredy an string, you dont have to create a new string ("+..+") and introduce it, just

 

player.sendMessage(Config.Message);

Posted
player.sendMessage(Config.Message);

 

That's not the only problem.

It's weird why errors did not occur.

 

He never set the Config "MESSAGE".

At least it is not in the patch.

Posted

Till i do it, i will remove the message config thing, i will update it tomorrow, thank you dudes.

 

 

Come on, it's nothing serious.

 

public static String PVP_WIN_MESSAGE;

------------------------------------------------------

WELCOME_MESSAGE_TEXT = otherSettings.getProperty("PvPWinMessage", "Message Here");

Posted

W/e now its fixed

 

pf, dude i gave you an example above..

 

MESSAGE = Boolean.parseBoolean(otherSettings.getProperty("Message", "Your Message Here"));

 

boolean =/= string

-.-"

 

 

Edit:

 

 

 

COME ON!!!!

I gave you the exact code above!

String.parseString ~> wtf?

 

Fix it:

MESSAGE = otherSettings.getProperty("Message", "Your Message Here");

  • 1 month later...
Guest
This topic is now closed to further replies.


  • Posts

    • sell adena l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO Also on sale are Epic jewelry, Clothes at a very good price
    • Hello Sorry, my Discord is: ave7309
    • “Hello, I’d like to present a short description of the server. Everyone starts equally at max level 80. The server includes a custom buffer, custom class master, custom weapons and armors, custom zones, custom teleporter, custom raid bosses, and much more. I’ll leave a link in the description for those who want to see how everything looks inside. The server is only open on weekends, and you can find more news via the Facebook link.”   https://www.facebook.com/profile.php?id=61578869175323
    • 1. You where subscriber 3 years ago. 2. There is no current L2jMobius 2.8 Seven Signs version. Subcriber or not. 3. You have your answer from multiple forums that more items is more delay.  
    • 1. Optimize Packet Serialization Look in ItemList.java or wherever the inventory packet is constructed. Instead of building the packet with inefficient string concatenation or repeated allocations, use a preallocated buffer and avoid creating new objects for each item. Mobius sources are Java-based, so profiling with something like VisualVM or YourKit can help see where most time is spent. 2. Avoid Sending the Full List Each Time Modify the server to send only changed items (diff packets) when the inventory window opens. Some newer forks implement this as “lazy loading” or paged inventory so the client only loads e.g. 100 items at a time. 3. Limit the Inventory Size Per Page Instead of showing all 500 slots at once, split the inventory into pages/tabs (100 slots each). When the user switches a tab, send only that page’s items. This requires some client-side editing, but it’s the most user-friendly long-term fix. 4. Database & Cache Optimizations Ensure your items table is indexed by owner_id to make the query for player items fast. Cache item templates and static data so they are not reloaded every time the inventory is shown. ⚠️ Things to Keep in Mind Increasing slots from 80 → 500 does not just change a number — it multiplies the workload for packet building and UI rendering. You can’t fully avoid some extra cost with 500 items, but you can keep it under a few milliseconds if you optimize how and when the data is sent.    
  • 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