Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.TradeStart


      }
      return;
    }
    transaction.cancel();
    new Transaction(TransactionType.TRADE, activeChar, requestor);
    requestor.sendPacket(new SystemMessage(SystemMessage.YOU_BEGIN_TRADING_WITH_C1).addString(activeChar.getName()), new TradeStart(requestor, activeChar));
    activeChar.sendPacket(new SystemMessage(SystemMessage.YOU_BEGIN_TRADING_WITH_C1).addString(requestor.getName()), new TradeStart(activeChar, requestor));
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.TradeStart

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.