Jump to content
  • 0

[Help]Mod Welcome PM


Question

Posted

someone who understands it and can java diser me where I am wrong in this line?

 

         if (Config.SHOW_WELCOME_PM)
         {
        	 CreatureSay np = new CreatureSay(0, Say2.TELL,Config.PM_FROM,Config.PM_TEXT1); 
        	 CreatureSay na = new CreatureSay(0, Say2.TELL,Config.PM_FROM,Config.PM_TEXT2); 
                activeChar.sendPacket(np)activeChar.getName()); 
                activeChar.sendPacket(na)activeChar.getName());
             }

 

Original mod:

 


        if (Config.SHOW_WELCOME_PM)
         {
        	 CreatureSay np = new CreatureSay(0, Say2.TELL,Config.PM_FROM,Config.PM_TEXT1); 
        	 CreatureSay na = new CreatureSay(0, Say2.TELL,Config.PM_FROM,Config.PM_TEXT2); 
                activeChar.sendPacket(np); 
                activeChar.sendPacket(na);
             }

 

L2JMack: Welcome

I'm trying to log changes to this:

L2JMack: Welcome MyNick

6 answers to this question

Recommended Posts

  • 0
Posted

Its totally wrong.

 

Just use this:

 

   if (Config.SHOW_WELCOME_PM)

   {

    activeChar.sendPacket(new CreatureSay(0, Say2.TELL, "Server", "Welcome " + activeChar.getName()));

//and next message

   }

 

  • 0
Posted

more so will not work in config.propierts

look here ta complete the mod so that I appear at the end of the message the nick of the player:

 

Index: /trunk/L2J-Mack_IL/L2J-Mack_GameServer/java/com/l2dot/Config.java
===================================================================
--- /trunk/L2J-Mack_IL/L2J-Mack_GameServer/java/com/l2dot/Config.java (revision 5)
+++ /trunk/L2J-Mack_IL/L2J-Mack_GameServer/java/com/l2dot/Config.java (revision 23)
@@ -1646,4 +1646,8 @@

	public static boolean SHOW_HTML_WELCOME;
+    public static boolean   SHOW_WELCOME_PM;
+    public static String    PM_FROM;
+    public static String    PM_TEXT1;
+    public static String    PM_TEXT2;

	/** Chat filter */
@@ -3416,4 +3420,8 @@
						.getProperty("AllowLowLevelTrade", "True"));
				SHOW_HTML_WELCOME = Boolean.parseBoolean(L2dotSettings.getProperty("ShowWelcomeHTML", "False"));
+                SHOW_WELCOME_PM          = Boolean.parseBoolean(L2dotSettings.getProperty("ShowWelcomePM", "False"));
+                PM_FROM                  = L2dotSettings.getProperty("PMFrom", "Server");
+                PM_TEXT1                 = L2dotSettings.getProperty("PMText1", "Welcome to our server");
+                PM_TEXT2                 = L2dotSettings.getProperty("PMText2", "Visit our web http://Your.Web.Adress");
				ALLOW_POTS_IN_PVP = Boolean.parseBoolean(L2dotSettings
						.getProperty("AllowPotsInPvP", "True"));
Index: /trunk/L2J-Mack_IL/L2J-Mack_GameServer/java/com/l2dot/gameserver/network/clientpackets/EnterWorld.java
===================================================================
--- /trunk/L2J-Mack_IL/L2J-Mack_GameServer/java/com/l2dot/gameserver/network/clientpackets/EnterWorld.java (revision 5)
+++ /trunk/L2J-Mack_IL/L2J-Mack_GameServer/java/com/l2dot/gameserver/network/clientpackets/EnterWorld.java (revision 23)
@@ -58,4 +58,5 @@
import com.l2dot.gameserver.model.quest.Quest;
import com.l2dot.gameserver.network.SystemMessageId;
+import com.l2dot.gameserver.network.serverpackets.CreatureSay;
import com.l2dot.gameserver.network.serverpackets.Die;
import com.l2dot.gameserver.network.serverpackets.EtcStatusUpdate;
@@ -323,4 +324,13 @@
				sendPacket(html);
			}
+
+         if (Config.SHOW_WELCOME_PM)
+         {
+        	 CreatureSay np = new CreatureSay(0, Say2.TELL,Config.PM_FROM,Config.PM_TEXT1); 
+        	 CreatureSay na = new CreatureSay(0, Say2.TELL,Config.PM_FROM,Config.PM_TEXT2); 
+                activeChar.sendPacket(np); 
+                activeChar.sendPacket(na);
+             }
+
		}

Index: /trunk/L2J-Mack_IL/L2J-Mack_GameServer/config/l2dot.properties
===================================================================
--- /trunk/L2J-Mack_IL/L2J-Mack_GameServer/config/l2dot.properties (revision 11)
+++ /trunk/L2J-Mack_IL/L2J-Mack_GameServer/config/l2dot.properties (revision 23)
@@ -39,4 +39,10 @@
# Show Welcome.htm When a Player Enters Lineage 2 World?
ShowWelcomeHTML = True
+
+# Show Welcome PM on start
+ShowWelcomePM = True
+PMFrom = L2JMack
+PMText1 = Welcome to server
+PMText2 = Bem Vindo ao Server

# -------------------------------------------------------------

  • 0
Posted

37010049.jpg

 

I like the image.

And that message text is set in this propierts:

 

# Show Welcome PM on start

ShowWelcomePM = True

PMFrom = L2JMack

PMText1 = Welcome to server

PMText2 = Bem Vindo ao Server

 

and that I do not want to faser conssegui not want to change the codes so that I add the code to show the player's nickname in the same image

  • 0
Posted (edited)
On 7/2/2010 at 10:27 AM, DS-Dazzel said:

http://img25.imageshack.us/img25/443/37010049.jpg

 

I like the image.

And that message text is set in this propierts:

 

# Show Welcome PM on start

ShowWelcomePM = True

PMFrom = L2JMack

PMText1 = Welcome to server

PMText2 = Bem Vindo ao Server

 

and that I do not want to faser conssegui not want to change the codes so that I add the code to show the player's nickname in the same image

 

Just Change This in : ENTERWORLD.java

 

        if (Config.PM_MESSAGE_ON_START)
        {
            activeChar.sendPacket(new CreatureSay(2, Say2.TELL, Config.PM_SERVER_NAME, Config.PM_TEXT1));
            activeChar.sendPacket(new CreatureSay(15, Say2.TELL,Config.PM_SERVER_NAME, Config.PM_TEXT2));
        }

Edited by HecHenry
  • 0
Posted
4 hours ago, HecHenry said:

 

Just Change This in : ENTERWORLD.java

 

        if (Config.PM_MESSAGE_ON_START)
        {
            activeChar.sendPacket(new CreatureSay(2, Say2.TELL, Config.PM_SERVER_NAME, Config.PM_TEXT1));
            activeChar.sendPacket(new CreatureSay(15, Say2.TELL,Config.PM_SERVER_NAME, Config.PM_TEXT2));
        }

Please do not undig old topics

Guest
This topic is now closed to further replies.


  • Posts

    • You talk too much go open L2Jhellas 😞 
    • 🌟 L2Avalon – Interlude Rework x20 – Grand Opening July 4! 🌟 📅 Server Launch: Open Beta: June 26, 18:00 GMT+3 Grand Opening: July 4, 2025 📦 Chronicle & Client: Reworked Interlude (based on latest High Five features) Custom launcher with up-to-date client support ⚔️ Rates & Progression: EXP/SP: Lv 1–39: x20 Lv 40–52: x15 Lv 52–60: x10 Lv 61–70: x8 Lv 71–75: x5 Lv 76–79: x4 → x3 Lv 80+: x2 Adena: x1 (subject to adjustment) Drop/Spoil/Raid Drop: x5 Quest Drop: custom Party Bonus: up to +290% EXP 🛠️ Core Features: Auto-loot (normal drops) Auto-learn skills up to level 75 High Five-style skill system with full rebalancing Passive MP regen: +1000 MP / 15s Inventory space: 150 slots Weight limit increased Auto CP/HP/MP potions Global chat from level 40 (!), offline shop (.offline), buff selling system (.sellbuff) 🔼 Class Progression: 1st & 2nd class: Free 3rd class: Kill 700 mobs → get 1 Giant Codex Subclass: Custom quest + 4 raid bosses + 1000 B-grade Crystals Noblesse: Either via Caradine's Letter (Lv 65+) or Noblesse box from raid bosses 🏪 NPC Shops & Support: GM Shop: Full D/C gear, Low B gear Luxury Shop: TOP B gear Donation Shop: Cosmetics, premium, etc. NPC Buffer: Save & load buff schemes (premium buffs for Premium Account) Mammon functions via NPC in Giran (unseal, augment, etc.) Offline Traders, Coin of Luck auction system Special blacksmiths and unique item services 💡 Why L2Avalon? Balanced seasonal x20 rates – smooth and long-term growth Quality-of-life systems for casual & hardcore players alike Custom skill system, refined raid rewards, and unique gear upgrades Active community, continuous development, and fair monetization Beta rewards & early start advantage 🔗 Useful Links: 🌐 Website: https://www.l2avalon.net 📘 Full Server Info: https://l2avalon-net.gitbook.io/info 💬 Discord: https://discord.gg/NbM2cXmAem 📝 Join the adventure this July! Prepare your characters during Beta and get rewarded at launch!  
    • You spent over a month calling a lot of people names. I get that you want to change, but it will take a lot more than this for me to believe its sincere. And honestly, for your apology to matter, I'd have to care enough to be offended in the first place.
    • we all love you very much Guytis💖 🤗
    • W/e u smoke there, i want aswell... life has been cruel all this time! Maybe it will help me
  • 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