Jump to content
  • 0

{HELP} Something Wrong With Trade Chat :D


Question

Posted

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... ?

Recommended Posts

  • 0
Posted

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;

  • 0
Posted

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...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..