R3spawn Posted February 5, 2009 Posted February 5, 2009 Guys, I would like to remove this text after logging if its possible and to turn off 7signs from my server... Anyone have any suggestion ? I hate this text and I would likt to dissapear... Thanks! Best regards, Respawn. ;)
0 Fogotendx20 Posted February 5, 2009 Posted February 5, 2009 Guys, I would like to remove this text after logging if its possible and to turn off 7signs from my server... Anyone have any suggestion ? I hate this text and I would likt to dissapear... Thanks! Best regards, Respawn. ;) SevenSing.java this is the part for messages u cant edit messages.... can remove it ;p ....if u want to edit...u must edit client ;p * Send info on the current Seven Signs period to the specified player. * * @param player */ public void sendCurrentPeriodMsg(L2PcInstance player) { SystemMessage sm = null; switch (getCurrentPeriod()) { case PERIOD_COMP_RECRUITING: sm = new SystemMessage(SystemMessageId.PREPARATIONS_PERIOD_BEGUN); break; case PERIOD_COMPETITION: sm = new SystemMessage(SystemMessageId.COMPETITION_PERIOD_BEGUN); break; case PERIOD_COMP_RESULTS: sm = new SystemMessage(SystemMessageId.RESULTS_PERIOD_BEGUN); break; case PERIOD_SEAL_VALIDATION: sm = new SystemMessage(SystemMessageId.VALIDATION_PERIOD_BEGUN); break; } player.sendPacket(sm); } /** * Sends the built-in system message specified by sysMsgId to all online players. * * @param sysMsgId */ public void sendMessageToAll(SystemMessageId sysMsgId) { SystemMessage sm = new SystemMessage(sysMsgId); Broadcast.toAllOnlinePlayers(sm); } if u want to disable all 7sing messages ...just disable all this code
0 DāЯқŜiĐє Posted February 5, 2009 Posted February 5, 2009 I agree with Fogotend no configs for that thing..(xmm why not changing the spawn delay??)
0 fdLP. Posted February 5, 2009 Posted February 5, 2009 Enterworld.java , explore it (gameserver.network.clientpackets)
0 R3spawn Posted February 5, 2009 Author Posted February 5, 2009 You guys mean 1st I must to compile it ? xD If u mean on that... can u give me the file which u said, upload it and I just will add or it can't be ? :D Coz I don't know how to compile but I'm leaning it and I'll do it asap. Just I dont know which java kit I hvae to download. ^^ Thanks!
0 fdLP. Posted February 5, 2009 Posted February 5, 2009 You guys mean 1st I must to compile it ? xD If u mean on that... can u give me the file which u said, upload it and I just will add or it can't be ? :D Coz I don't know how to compile but I'm leaning it and I'll do it asap. Just I dont know which java kit I hvae to download. ^^ Thanks! you need to dl eclipse , checkout your pack , modify it , compile and use it in your pack .(stay up to date) now how to do all these i said b4 , search here or in your packs support forum
0 zunix Posted February 5, 2009 Posted February 5, 2009 You guys mean 1st I must to compile it ? xD If u mean on that... can u give me the file which u said, upload it and I just will add or it can't be ? :D Coz I don't know how to compile but I'm leaning it and I'll do it asap. Just I dont know which java kit I hvae to download. ^^ Thanks! ask google for "compile" stand for than u will understand it
0 Fogotendx20 Posted February 5, 2009 Posted February 5, 2009 im forggot go enterworld.java and check and this not only this at sevensing.java SevenSigns.getInstance().sendCurrentPeriodMsg(activeChar); Announcements.getInstance().showAnnouncements(activeChar); 1. if u disable the code as i said at sevensing.java isa same ... u dont see the m essage 2. if u dissable code in eneterworld and not in sevensing.... is again same... when u log will not see messge PS: Eneterworld is oly/used when log in game .... so if u want remove other sevensings messages u must remove it at sevnsing.java :P anyway u ahve 2,3 ways to make it ;p
0 macdonald12 Posted February 5, 2009 Posted February 5, 2009 If you change it in the SevenSigns file you must also change it in the EnterWorld, otherwise the latter is going to throw errors if you still call it. So best would be to just delete or comment it out in EnterWorld.
0 Kràtos Posted February 5, 2009 Posted February 5, 2009 If you find how to compile and the source of pack just go at line for 7sings and put this if (Config.ALLOW_SEVEN_SINGS)! For Example if (Config.ALLOW_HERO_ITEM) { if (!(playable instanceof L2PcInstance)) return; L2PcInstance activeChar = (L2PcInstance)playable; int itemId = item.getItemId(); if (itemId == 10639) // Item to become hero // { Well this is the first part you need to go at our config.java put one line at our characters.properties,other.properties etc like # ----------- # Allow Seven Signs # ----------- AllowSevenSings = false or true And is done :) all this to do you need some knowledge ..!
Question
R3spawn
Guys, I would like to remove this text after logging if its possible and to turn off 7signs from my server...
Anyone have any suggestion ?
I hate this text and I would likt to dissapear...
Thanks!
Best regards,
Respawn. ;)
9 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now