diff options
author | Mattes D <github@xoft.cz> | 2013-12-14 23:40:24 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-12-14 23:40:24 +0100 |
commit | 5e6a4c99a7509e480e4c2b31d66044ec1fa44559 (patch) | |
tree | 9815ee7865a445f45a31485225649f5e977ef339 /src/Protocol/Protocol17x.cpp | |
parent | Added tolua++ redirection include. (diff) | |
parent | Exported E_EFFECTS_<Effect> to lua. Forgot to commit Globals.h. (diff) | |
download | cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.tar cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.tar.gz cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.tar.bz2 cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.tar.lz cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.tar.xz cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.tar.zst cuberite-5e6a4c99a7509e480e4c2b31d66044ec1fa44559.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.cpp')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 83db17e78..0daf1c932 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -236,6 +236,19 @@ void cProtocol172::SendEditSign(int a_BlockX, int a_BlockY, int a_BlockZ) +void cProtocol172::SendEntityEffect(const cEntity & a_Entity, int a_EffectID, int a_Amplifier, short a_Duration) +{ + cPacketizer Pkt(*this, 0x1D); // Entity Effect packet + Pkt.WriteInt(a_Entity.GetUniqueID()); + Pkt.WriteByte(a_EffectID); + Pkt.WriteByte(a_Amplifier); + Pkt.WriteShort(a_Duration); +} + + + + + void cProtocol172::SendEntityEquipment(const cEntity & a_Entity, short a_SlotNum, const cItem & a_Item) { cPacketizer Pkt(*this, 0x04); // Entity Equipment packet @@ -585,6 +598,17 @@ void cProtocol172::SendPlayerSpawn(const cPlayer & a_Player) +void cProtocol172::SendRemoveEntityEffect(const cEntity & a_Entity, int a_EffectID) +{ + cPacketizer Pkt(*this, 0x1E); + Pkt.WriteInt(a_Entity.GetUniqueID()); + Pkt.WriteByte(a_EffectID); +} + + + + + void cProtocol172::SendRespawn(void) { cPacketizer Pkt(*this, 0x07); // Respawn packet |