示例#1
0
        public static void OnTradePutGold(WorldClient client, INetPacketStream packet)
        {
            var tradePacket = new TradePutGoldPacket(packet);
            var tradeEvent  = new TradePutGoldEventArgs(tradePacket.Gold);

            client.Player.NotifySystem <TradeSystem>(tradeEvent);
        }
示例#2
0
 public void OnTradePutGold(IWorldClient client, TradePutGoldPacket packet)
 {
     _tradeSystem.PutGold(client.Player, packet.Gold);
 }