Jump to content
  • 0

[HELP]Autoannounce-Title


Question

1 answer to this question

Recommended Posts

  • 0
Posted

Index: /trunk/L2_dreamcode_GameServer_IL/java/config/l2jmods.properties
===================================================================
--- /trunk/L2_dreamcode_GameServer_IL/java/config/l2jmods.properties (revision 89)
+++ /trunk/L2_dreamcode_GameServer_IL/java/config/l2jmods.properties (revision 94)
@@ -278,2 +278,5 @@
#Flaged Player Can Use GK
AltFlagedPlayerCanUseGK = True
+
+# Starting Title 
+StartingTittle = L2jDreamCode
Index: /trunk/L2_dreamcode_GameServer_IL/java/net/sf/l2j/Config.java
===================================================================
--- /trunk/L2_dreamcode_GameServer_IL/java/net/sf/l2j/Config.java (revision 88)
+++ /trunk/L2_dreamcode_GameServer_IL/java/net/sf/l2j/Config.java (revision 94)
@@ -45,5 +45,6 @@
public final class Config
{
-    protected static final Logger _log = Logger.getLogger(Config.class.getName());
+     
+	protected static final Logger _log = Logger.getLogger(Config.class.getName());
     /** Debug/release mode */
     public static boolean DEBUG;
@@ -62,4 +63,6 @@
     /** Login Server bind ip */
     public static String LOGIN_BIND_ADDRESS;
+    public static String  STARTING_TITLE;
+    /** Custom Starting tittle */
     /** Number of login tries before IP ban gets activated, default 10*/
     public static int LOGIN_TRY_BEFORE_BAN;
@@ -2045,4 +2048,5 @@
                 SERVER_NAME                = L2JModSettings.getProperty("ServerName", "L2J DreamCode");
                 ALT_GAME_FLAGED_PLAYER_CAN_USE_GK	= Boolean.parseBoolean(L2JModSettings.getProperty("AltFlagedPlayerCanUseGK", "false"));
+                STARTING_TITLE  = L2JModSettings.getProperty("StartingTitle", "Something"); 
                 /** Custom Project Modifications - End */

Index: /trunk/L2_dreamcode_GameServer_IL/java/net/sf/l2j/gameserver/clientpackets/CharacterCreate.java
===================================================================
--- /trunk/L2_dreamcode_GameServer_IL/java/net/sf/l2j/gameserver/clientpackets/CharacterCreate.java (revision 77)
+++ /trunk/L2_dreamcode_GameServer_IL/java/net/sf/l2j/gameserver/clientpackets/CharacterCreate.java (revision 94)
@@ -198,4 +198,5 @@

		newChar.setXYZInvisible(template.spawnX, template.spawnY, template.spawnZ);
+		newChar.setTitle(Config.STARTING_TITLE); 
		newChar.setTitle("");

 

OR

 

Index: /trunk/L2J-Infinity_IL_GS/java/net/sf/l2j/Config.java
===================================================================
--- /trunk/L2J-Infinity_IL_GS/java/net/sf/l2j/Config.java (revision 49)
+++ /trunk/L2J-Infinity_IL_GS/java/net/sf/l2j/Config.java (revision 50)
@@ -276,4 +276,6 @@
     public static boolean   CUSTOM_START_LEVEL;
     public static byte      SUBCLASS_LEVEL;
+    public static boolean   CUSTOM_CHAR_TITLE;
+    public static String    CUSTOM_CHAR_TITLE_TEXT;
     public static boolean   CHAMPION_ENABLE;
     public static int       CHAMPION_FREQUENCY;
@@ -1596,4 +1598,6 @@
                 CUSTOM_START_LEVEL               = Boolean.parseBoolean(Modifications.getProperty("CustomStartLvl", "False"));
                 SUBCLASS_LEVEL                   = Byte.parseByte(Modifications.getProperty("SubclassLevel","40"));
+                CUSTOM_CHAR_TITLE                = Boolean.parseBoolean(Modifications.getProperty("CustomStartTitle", "False"));
+                CUSTOM_CHAR_TITLE_TEXT           = Modifications.getProperty("CustomTitleText","L2J-Infinity");
                 CHAMPION_ENABLE                  = Boolean.parseBoolean(Modifications.getProperty("ChampionEnable", "False"));
                 CHAMPION_FREQUENCY               = Integer.parseInt(Modifications.getProperty("ChampionFrequency", "0"));
Index: /trunk/L2J-Infinity_IL_GS/java/net/sf/l2j/gameserver/network/clientpackets/CharacterCreate.java
===================================================================
--- /trunk/L2J-Infinity_IL_GS/java/net/sf/l2j/gameserver/network/clientpackets/CharacterCreate.java (revision 49)
+++ /trunk/L2J-Infinity_IL_GS/java/net/sf/l2j/gameserver/network/clientpackets/CharacterCreate.java (revision 50)
@@ -194,4 +194,9 @@

		newChar.setXYZInvisible(template.spawnX, template.spawnY, template.spawnZ);
+		
+		if (Config.CUSTOM_CHAR_TITLE)
+			newChar.setTitle(Config.CUSTOM_CHAR_TITLE_TEXT);
+		else
+			newChar.setTitle("");

		L2ShortCut shortcut;
Index: /trunk/L2J-Infinity_IL_GS/Settings/Modifications.properties
===================================================================
--- /trunk/L2J-Infinity_IL_GS/Settings/Modifications.properties (revision 49)
+++ /trunk/L2J-Infinity_IL_GS/Settings/Modifications.properties (revision 50)
@@ -14,4 +15,13 @@
# Default: 40
SubclassLevel = 40
+
+# Custom Starting Title
+# This Will Set A Custom Title To The New Chars
+# Default: False
+CustomStartTitle = False
+
+# What Shoud Be The Title ?
+# Max: 16
+CustomTitleText = L2J-Infinity

# ========================== #

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
Answer this question...

×   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

    • So Goldbar thinks that deleted his side of the conversation makes it easier to claim he didn’t scam me. But I sent him $51 USDT to his ERC-20 account it was verified, he acted like it was fine but then deleted his messages and blocked me. Seriously do not trust this guy. 
    • Hi everyone, let me introduce myself—I'm Martin, a junior developer. I'm diving into the world of L2 servers, and honestly, I'm super overwhelmed about where to start learning the right way to set up, configure, and run a server. There are so many datapacks—free, private—but it's so much that my head feels like it's going to explode. I'm currently looking for someone or an active project willing to take me on as an intern. I'm not looking to make money—I'm just here to learn and grow out of pure passion for L2. I've already been working with L2jMobius H5. I managed to edit the Community Board, add a buffer, GM Shop, and teleports. I've also created custom NPCs for the GM Shop, and imported new custom weapons and armors—complete with original glow effects, like the Valakas and Antharas weapons. But there's still a lot I don't know, and it can get overwhelming. That’s why I’m looking for someone—or an active non-profit project—willing to take me on as an intern. I’m not looking to make money; I just want to learn, contribute, and grow out of pure passion for L2. If you’re working on a project and could use a motivated learner who’s eager to help, I’d love to connect!
    • Our next easy-botting project, Kain, is right around the corner! Launching tomorrow, Saturday, April 26th at 9:00 ET (UTC -4)! If you haven’t, check out the features and join our Discord to catch up on the latest drama. See you very soon! Read more about L2Toggle and Kain on our site and forum!  
    • 🤣 You were talking about security — I want you to prove that it's actually insecure, try to hack it or something. You're just talking without any evidence, and that's not right. Without the personal key that's generated for each site, you can't do anything. And by the way, boberKurwa isn't even used — it's a joke, and you totally fell for it. You're being very unconstructive. I appreciate criticism based on facts, and here's a fact: Sphere 2 has been running publicly since October, and there haven't been any successful hacking attempts. If you doubt that, go ahead and prove me wrong.  
  • Topics

×
×
  • Create New...