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

    • WTB GRACIA FINAL INTERFACE
    • Dear partners! At the moment we are in great need of the following positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old (brute or hacked origin, self-registered) accounts with post and comment karma from 100 to 100,000+ | Full email access included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010–2023) | Full email access (possibly with active 2FA password) — Facebook old accounts (2010–2023) | Full email access (possibly with active 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with active 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts — Email accounts: mail.ru, yahoo.com, gazeta.pl, gmx.ch / gmx.de / gmx.net (BUT NOT gmx.com) — Google ADS Manual Farm accounts (verified via email and phone number) | GEO: USA/Europe, mostly USA. — WhatsApp OLD Accounts — Twitter accounts with followers and posts (old accounts) Contact us via the details below. We will be glad to cooperate! We are also ready to consider other partnership and collaboration options. Active links to our projects: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Dear partners! At the moment we are in great need of the following positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old (brute or hacked origin, self-registered) accounts with post and comment karma from 100 to 100,000+ | Full email access included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010–2023) | Full email access (possibly with active 2FA password) — Facebook old accounts (2010–2023) | Full email access (possibly with active 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with active 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts — Email accounts: mail.ru, yahoo.com, gazeta.pl, gmx.ch / gmx.de / gmx.net (BUT NOT gmx.com) — Google ADS Manual Farm accounts (verified via email and phone number) | GEO: USA/Europe, mostly USA. — WhatsApp OLD Accounts — Twitter accounts with followers and posts (old accounts) Contact us via the details below. We will be glad to cooperate! We are also ready to consider other partnership and collaboration options. Active links to our projects: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • 冬天是享受优惠、省钱的好时机。 首次下单时使用促销码 SOCNET 即可获得 15% 折扣 ,适用于全场商品! 前往商店(网站) 前往商店(Telegram 机器人)
    • Winter is the time to save with benefits. Activate the promo code SOCNET on your first order and get a 15% discount on the entire assortment! Go to the store (website) Go to the store (Telegram bot)
  • 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