-
Notifications
You must be signed in to change notification settings - Fork 13
Cmd_CheckInLobbyAck
GigaToni edited this page May 4, 2017
·
2 revisions
- Result of the operation
- 0 = no error
- 1 = error
- Permission flags
- Administrator = 0x8000
- PowerUser = 0x4000
- RemoteClientUser = 0x2000
- Developer = 0x1000
- User = 0x0
This is the answer packet to Cmd_CheckInLobby (41)
000000: 2A 00 00 00 00 00 00 80 00 00 * · · · · · · · · ·
typedef struct
{
int Result;
int Permission;
};
public class CheckInLobbyAckPacket
{
public int Result = 1;
public int Permission = 0;
public void Send(ushort packetId, Client client)
{
var ack = new Packet(packetId);
ack.Writer.Write(Result);
ack.Writer.Write(Permission);
client.Send(ack);
}
}
DCNC Copyright ©️ 2017 GigaToni
- Home
- Cmd_UserAuth (20)
- Cmd_ServerList (23)
- Cmd_UserAuthAck (22)
- Cmd_ServerMessage (24)
- Cmd_ServerMessageAck (25)
- Home
- Cmd_AreaChat (571)
- Cmd_AreaChatAck (572)
- Cmd_AreaStatus (682)
- Cmd_AreaStatusAck (683)
- Cmd_EnterArea (562)
- Cmd_EnterAreaAck (563)
- Cmd_UdpTimeSync (540)
- Cmd_UdpTimeSyncAck (540)