Jump to content

DS-Dazzel

Members
  • Posts

    108
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by DS-Dazzel

  1. unequip weapon still in hand and without even being equipped with the weapon and get the stats as if she'd only equipped with I wonder if the forum or someone already contains the fix for this bug?
  2. thx for share build sucess full
  3. 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
  4. 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 # -------------------------------------------------------------
  5. 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. Personal contact with one doubts here and do not know if a certain area to post more let go. my rev cancel this onto the skill to give the target's own character who has the skill for example: I have the skill cancel insurance Control and click on my target and give conssigo cancel in minutes even though I know I have to fix it on my doubts and that java can not find java aquivo skill that anyone knows me out the way she is or where someone already have the fix for this bug?
  7. could move the topic to the correct location?
  8. Personal contact with one doubts here and do not know if a certain area to post more let go. my rev cancel this onto the skill to give the target's own character who has the skill for example: I have the skill cancel insurance Control and click on my target and give conssigo cancel in minutes even though I know I have to fix it on my doubts and that java can not find java aquivo skill that anyone knows me out the way she is or where someone already have the fix for this bug?
×
×
  • Create New...