UpdateCommandBlockPacket
class
Declaration
[ProtocolSupport(735, 776)]
[Packet("play.toServer.update_command_block", PacketPhase.Play, PacketDirection.Serverbound)]
[PacketField("Location", "Position")]
[PacketField("Command", "string")]
[PacketField("Mode", "int")]
[PacketField("Flags", "int")]
public sealed record UpdateCommandBlockPacket : IPacket<UpdateCommandBlockPacket>, IProtocolType<UpdateCommandBlockPacket>, IPacket
| Namespace | McProtoNet.Protocol.Packets.Play.Serverbound |
| Assembly | McProtoNet.Protocol.dll |
| Source | src/McProtoNet.Protocol/Generated/Packets/Play/Serverbound/UpdateCommandBlockPacket.cs#L5 ↗ |
Implements: IPacket<UpdateCommandBlockPacket>, IProtocolType<UpdateCommandBlockPacket>, IPacket
Constructors
| Signature | Description |
|---|---|
UpdateCommandBlockPacket(Position Location, string Command, int Mode, int Flags) | - |
UpdateCommandBlockPacket(Position, string, int, int)
public UpdateCommandBlockPacket(Position Location, string Command, int Mode, int Flags)
Parameters: Location (Position), Command (String), Mode (Int32), Flags (Int32)
Properties
| Signature | Description |
|---|---|
string Command | - |
int Flags | - |
static PacketIdentity Identity | Gets the identity of the packet type. |
Position Location | - |
int Mode | - |
Command
public string Command { get; init; }
Returns: String
Flags
public int Flags { get; init; }
Returns: Int32
Identity
public static PacketIdentity Identity { get; }
Gets the identity of the packet type.
Returns: PacketIdentity
Location
public Position Location { get; init; }
Returns: Position
Mode
public int Mode { get; init; }
Returns: Int32
Methods
| Signature | Description |
|---|---|
static int GetPacketId(int protocolVersion) | - |
static UpdateCommandBlockPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion) | Reads a value of type UpdateCommandBlockPacket from the specified reader. |
static bool TryGetPacketId(int protocolVersion, out int id) | Attempts to get the wire id of the packet for the specified protocol version. |
void Write(MinecraftPrimitiveWriter writer, int protocolVersion) | Writes the current value to the specified writer. |
GetPacketId(int)
public static int GetPacketId(int protocolVersion)
Parameters: protocolVersion (Int32)
Returns: Int32
Read(ref MinecraftPrimitiveReader, int)
public static UpdateCommandBlockPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)
Reads a value of type UpdateCommandBlockPacket from the specified reader.
Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)
Returns: UpdateCommandBlockPacket - The value that was read.
TryGetPacketId(int, out int)
public static bool TryGetPacketId(int protocolVersion, out int id)
Attempts to get the wire id of the packet for the specified protocol version.
Parameters: protocolVersion (Int32), id (Int32)
Returns: Boolean - <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the packet exists on the specified protocol version; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
Write(MinecraftPrimitiveWriter, int)
public void Write(MinecraftPrimitiveWriter writer, int protocolVersion)
Writes the current value to the specified writer.
Parameters: writer (MinecraftPrimitiveWriter), protocolVersion (Int32)