24 lines
623 B
JavaScript
24 lines
623 B
JavaScript
/*
|
|
@Packet name AdmiralSpawned
|
|
@Packet identifier 145
|
|
@Description Sends information about a spawned admiral
|
|
@Data pId
|
|
@Structure -
|
|
*/
|
|
|
|
module.exports = function (data) {
|
|
const packetLength = 4 + 1;
|
|
const buffer = new ArrayBuffer(packetLength);
|
|
const view = new DataView(buffer);
|
|
|
|
const { mapID, typeID, entityTypeID } = data;
|
|
|
|
view.setUint8(0, 145);
|
|
view.setUint8(1, packetLength);
|
|
view.setUint8(2, mapID);
|
|
view.setUint8(3, typeID);
|
|
view.setUint8(4, entityTypeID);
|
|
|
|
return buffer;
|
|
};
|