Files
pirate-corsaire-server/Packets/ItemBought.js
T
2026-08-24 22:20:36 +02:00

21 lines
590 B
JavaScript

/*
@Packet name ItemBought
@Packet identifier 170
@Description Holds data about a bought item's confirmation from shop
@Data -
@Structure -
*/
module.exports = function (data) {
const packetLength = 7 + 1;
const buffer = new ArrayBuffer(packetLength);
const view = new DataView(buffer);
view.setUint8(0, 170);
view.setUint8(1, packetLength);
view.setUint8(2, data.categoryID);
view.setUint8(3, data.id);
view.setUint32(4, data.amount);
return buffer;
};