2023-06-22 12:43:28 +01:00
|
|
|
import { createWriter, IReader, Endian } from "bufferstuff";
|
2024-10-26 14:24:38 +01:00
|
|
|
import IPacket from "./IPacket";
|
|
|
|
import Packet from "../enums/Packet";
|
2023-04-08 20:52:47 +01:00
|
|
|
|
2024-10-26 14:24:38 +01:00
|
|
|
export default class PacketEntityEquipment implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.EntityEquipment;
|
2023-04-08 20:52:47 +01:00
|
|
|
public entityId:number;
|
|
|
|
public slot:number;
|
|
|
|
public itemId:number;
|
|
|
|
public damage:number;
|
|
|
|
|
|
|
|
public constructor(entityId:number, slot:number, itemId:number, damage:number) {
|
|
|
|
this.entityId = entityId;
|
|
|
|
this.slot = slot;
|
|
|
|
this.itemId = itemId;
|
|
|
|
this.damage = damage;
|
|
|
|
}
|
|
|
|
|
2023-05-02 10:24:48 +01:00
|
|
|
public readData(reader:IReader) {
|
2023-04-08 20:52:47 +01:00
|
|
|
this.entityId = reader.readInt();
|
|
|
|
this.slot = reader.readShort();
|
|
|
|
this.itemId = reader.readShort();
|
|
|
|
this.damage = reader.readShort();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
2023-11-05 10:56:11 +00:00
|
|
|
return createWriter(Endian.BE, 11).writeUByte(this.packetId).writeInt(this.entityId).writeShort(this.slot).writeShort(this.itemId).writeShort(this.damage).toBuffer();
|
2023-04-08 20:52:47 +01:00
|
|
|
}
|
|
|
|
}
|