Guma! Posted March 12, 2010 Share Posted March 12, 2010 Index: /TrunK/L2JBrasil_CORE/java/com/it/br/Config.java =================================================================== --- /TrunK/L2JBrasil_CORE/java/com/it/br/Config.java (revision 433) +++ /TrunK/L2JBrasil_CORE/java/com/it/br/Config.java (revision 434) @@ -968,4 +968,8 @@ public static boolean RESTORE_EFFECTS_ON_SUBCLASS_CHANGE; public static boolean SHOW_WELCOME_HTML_ON_PLAYER_LOGIN; + public static boolean SHOW_WELCOME_PM; + public static String PM_FROM; + public static String PM_TEXT1; + public static String PM_TEXT2; public static boolean ENABLE_ONLINE_COMMAND; public static boolean ENABLE_STATINFO_COMMAND; @@ -1274,4 +1278,8 @@ TITLE_FOR_NEW_CHARS = L2JBrasil.getProperty("SetNewCharTitle", "L2JBrasil"); SHOW_WELCOME_HTML_ON_PLAYER_LOGIN = Boolean.parseBoolean(L2JBrasil.getProperty("ShowWelcomeinfo", "False")); + SHOW_WELCOME_PM = Boolean.parseBoolean(L2JBrasil.getProperty("ShowWelcomePM", "False")); + PM_FROM = L2JBrasil.getProperty("PMFrom", "Server"); + PM_TEXT1 = L2JBrasil.getProperty("PMText1", "Welcome to our server"); + PM_TEXT2 = L2JBrasil.getProperty("PMText2", "Visit our web http://Your.Web.Adress"); ENABLE_ONLINE_COMMAND = Boolean.parseBoolean(L2JBrasil.getProperty("EnableOnlinePlayersCommand", "False")); ENABLE_STATINFO_COMMAND = Boolean.parseBoolean(L2JBrasil.getProperty("EnableStatusInfoCommand", "False")); Index: /TrunK/L2JBrasil_CORE/java/com/it/br/gameserver/clientpackets/EnterWorld.java =================================================================== --- /TrunK/L2JBrasil_CORE/java/com/it/br/gameserver/clientpackets/EnterWorld.java (revision 423) +++ /TrunK/L2JBrasil_CORE/java/com/it/br/gameserver/clientpackets/EnterWorld.java (revision 434) @@ -327,6 +327,18 @@ sendPacket(new NpcHtmlMessage(1, welcome)); } + + 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); + } + PetitionManager.getInstance().checkPetitionMessages(activeChar); Index: /TrunK/L2JBrasil_CORE/config/L2JBrasil.properties =================================================================== --- /TrunK/L2JBrasil_CORE/config/L2JBrasil.properties (revision 414) +++ /TrunK/L2JBrasil_CORE/config/L2JBrasil.properties (revision 434) @@ -206,4 +206,10 @@ ShowWelcomeinfo = False +# Show Welcome PM on start +ShowWelcomePM = False +PMFrom = Server +PMText1 = Welcome to our server +PMText2 = Visit our web http://Your.Web.Adress + # Announce Admin Name At Login # This sctipt will announce when GM/Admin login. Link to comment Share on other sites More sharing options...
AnsS Posted March 12, 2010 Share Posted March 12, 2010 This code: + ExShowScreenMessage welcomemessage = new ExShowScreenMessage("Welcome to Lineage2 World",10000); + activeChar.sendPacket(welcomemessage); is welcome message. Not PM -.-" Link to comment Share on other sites More sharing options...
Vago Posted March 12, 2010 Share Posted March 12, 2010 Shares are getting more and more stupid in here... Link to comment Share on other sites More sharing options...
Coyote™ Posted March 12, 2010 Share Posted March 12, 2010 Shares are getting more and more stupid in here... I'll have to agree. All of us can add something extra on enterworld and present it here -.-" Plus that you add an exshowmessage too, not only the pms stuff.. This code:is welcome message. Not PM -.-" FAIL. Link to comment Share on other sites More sharing options...
B1ggBoss Posted March 12, 2010 Share Posted March 12, 2010 since the pm is gona be the same for all players, make it static (common to all EnterWorld instances) and final (unmoddificable). That will spent less resources (not much, but you have to look always for the better performance) Link to comment Share on other sites More sharing options...
XtreMpOweR Posted March 12, 2010 Share Posted March 12, 2010 You kidding me??? + ExShowScreenMessage welcomemessage = new ExShowScreenMessage("Welcome to Lineage2 World",10000); + activeChar.sendPacket(welcomemessage); This is a PM message? Lol... Link to comment Share on other sites More sharing options...
Belzebul Posted March 12, 2010 Share Posted March 12, 2010 credits to l2jbrazil? Link to comment Share on other sites More sharing options...
Coyote™ Posted March 12, 2010 Share Posted March 12, 2010 You kidding me???This is a PM message? Lol... That's what I told above.. It's an exshowscreenmessage. Link to comment Share on other sites More sharing options...
Guma! Posted March 12, 2010 Author Share Posted March 12, 2010 ignore these lines and that I had added before not have the option to edit the topic Link to comment Share on other sites More sharing options...
`Peter Posted March 12, 2010 Share Posted March 12, 2010 Credits ; no text ; nothing, you just posted a patch with -code- -/code- ;O Link to comment Share on other sites More sharing options...
Guma! Posted March 12, 2010 Author Share Posted March 12, 2010 a guy gave me this idea it does not really know if it was those who did if anyone knows the creator Link to comment Share on other sites More sharing options...
Loren Posted March 12, 2010 Share Posted March 12, 2010 Index: /TrunK/L2JBrasil_CORE/java/com/it/br/Config.java This is L2JBrasils Code..give the proper credits! Anyway Thx For Share Link to comment Share on other sites More sharing options...
`Rοmeο Posted March 12, 2010 Share Posted March 12, 2010 Index: /TrunK/L2JBrasil_CORE/java/com/it/br/Config.java This is L2JBrasils Code..give the proper credits! Anyway Thx For Share If you check l2jbrazil's source you will see that he is the creator :D http://trac6.assembla.com/L2j-Brasil/timeline Link to comment Share on other sites More sharing options...
Sido Posted March 15, 2010 Share Posted March 15, 2010 Index: /TrunK/L2JBrasil_CORE/java/com/it/br/Config.java This is L2JBrasils Code..give the proper credits! Anyway Thx For Share dumb Link to comment Share on other sites More sharing options...
Kяaσh Posted March 15, 2010 Share Posted March 15, 2010 Someone steal the code from eminence source. Link to comment Share on other sites More sharing options...
Recommended Posts