Page 1 of 1

Level 80 needed to talk on Global/Trade Chat

Posted: Sun Nov 21, 2010 4:23 pm
by hiroshima
someone know how to set it like in topic guys?
Thanks

Re: Level 80 needed to talk on Global/Trade Chat

Posted: Sun Nov 21, 2010 5:42 pm
by Zoey76
Shout, trade and hero voice cannot be used until level 80.

Code: Select all

### by Zoey76#P L2_GameServerIndex: java/com/l2jserver/gameserver/network/clientpackets/Say2.java===================================================================--- java/com/l2jserver/gameserver/network/clientpackets/Say2.java    (revision 4422)+++ java/com/l2jserver/gameserver/network/clientpackets/Say2.java    (working copy)@@ -196,6 +196,13 @@         if (Config.USE_SAY_FILTER)             checkText();         +        +        if ((activeChar.getLevel() < 80) && (_type == TRADE || _type == SHOUT || _type == HERO_VOICE))+        {+            activeChar.sendMessage("Shout, trade and hero chatting cannot be used until level 80.");+            return;+        }+                 IChatHandler handler = ChatHandler.getInstance().getChatHandler(_type);         if (handler != null)             handler.handleChat(_type, activeChar, _target, _text); 
Shout and trade:

Code: Select all

### by Zoey76#P L2_GameServerIndex: java/com/l2jserver/gameserver/network/clientpackets/Say2.java===================================================================--- java/com/l2jserver/gameserver/network/clientpackets/Say2.java    (revision 4422)+++ java/com/l2jserver/gameserver/network/clientpackets/Say2.java    (working copy)@@ -196,6 +196,13 @@         if (Config.USE_SAY_FILTER)             checkText();         +        +        if ((activeChar.getLevel() < 80) && (_type == TRADE || _type == SHOUT))+        {+            activeChar.sendMessage("Shout and trade chatting cannot be used until level 80.");+            return;+        }+                 IChatHandler handler = ChatHandler.getInstance().getChatHandler(_type);         if (handler != null)             handler.handleChat(_type, activeChar, _target, _text); 

Re: Level 80 needed to talk on Global/Trade Chat

Posted: Sun Nov 21, 2010 5:51 pm
by shoko
It so good :lol:

Re: Level 80 needed to talk on Global/Trade Chat

Posted: Mon Nov 22, 2010 6:59 pm
by hiroshima
Again you Zoey... thanks :)