Jump to content
  • 0

{HELP} Something Wrong With Trade Chat :D


sweetparanoid

Question

Hi, I Just Noticed That In My Pack Which Is Based On L2j-Interlude When Someone Speak In Trade Chat ( + ) It Duplicates What He Say...

I  just Put Flood Protection To See If It Block It ..But It Blocks Only The One..LOL ?

Any Idea Why That Happen... ?

Link to comment
Share on other sites

Recommended Posts

  • 0

I Think Here Is The Problem..

case TRADE:
		if (Config.DEFAULT_TRADE_CHAT.equalsIgnoreCase("on")
				|| (Config.DEFAULT_TRADE_CHAT.equalsIgnoreCase("gm") && activeChar
						.isGM()))
			if (!FloodProtector.getInstance().tryPerformAction(
					activeChar.getObjectId(),
					FloodProtector.PROTECTED_CHAT_TRADE))
			{
				activeChar
						.sendMessage("Action failed. You can not speak so fast sorry!");
				return;
			}
		{
			for (L2PcInstance player : L2World.getInstance()
					.getAllPlayers())
			{
				player.sendPacket(cs);
			}

		}  if (Config.DEFAULT_TRADE_CHAT.equalsIgnoreCase("limited"))
		{
			if (!FloodProtector.getInstance().tryPerformAction(
					activeChar.getObjectId(),
					FloodProtector.PROTECTED_CHAT_TRADE))
			{
				activeChar
						.sendMessage("Action failed. You can not speak so fast sorry!");
				return;
			}

			int region = MapRegionTable.getInstance().getMapRegion(
					activeChar.getX(), activeChar.getY());
			for (L2PcInstance player : L2World.getInstance()
					.getAllPlayers())
			{
				if (region == MapRegionTable.getInstance().getMapRegion(
						player.getX(), player.getY()))
					player.sendPacket(cs);
			}
		}
		break;

Link to comment
Share on other sites

  • 0

Hehe Why You Dont Believe Me...There Is Not Such A File ChatTrade.java... If You See On L2j (Interlude) There Arent These Files ChatTrade/ChatClan/ChatAll

All These Are Located In Say2.java ...

 

no.you work with shitlude...not l2j

Lolz...Is Based On L2j...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...