Capture & Decode Albion Online Network Traffic in Real-Time
A modern packet sniffer specialized for Albion Online, providing deep insights into game network operations. Forked from rsxdalv/albion-trader with enhanced capabilities.
✨ Key Features
- Real-time packet capture and decoding
- Event-driven architecture
- Auction house monitoring
- Player operation tracking
- Customizable event handlers
npm install ao-network
const AONetwork = require('ao-network');
const aoNet = new AONetwork();
// Enable global packet processing
aoNet.events.use((result) => {
console.log('[Raw Packet]', result.context);
});
aoNet.events.on(aoNet.AODecoder.messageType.Event, (context) => {
if(!context.parameters.hasOwnProperty('252')) {
return;
}
console.log('[Game Event]', context);
});
aoNet.events.on(aoNet.AODecoder.messageType.OperationResponse, (context) => {
if(!context.parameters.hasOwnProperty('253') || context.parameters['253'] != aoNet.data.operations.AuctionModifyAuction) {
return;
}
console.log('[Auction Update]', context);
});
aoNet.events.on(aoNet.AODecoder.messageType.OperationRequest, (context) => {
console.log(context);
});
Happy Packet Sniffing! 👾🕵️♂️