-
Notifications
You must be signed in to change notification settings - Fork 13
Cmd_LobbyTimeAck
GigaToni edited this page May 4, 2017
·
2 revisions
Not much information here currently.
000000: 2F 00 EB 2F 8D 00 EB 2F 8D 00 / · · / · · · / · ·
typedef struct
{
int LocalTime;
int TimeT;
};
public class LobbyTimeAckPacket
{
public int LocalTime;
public int TimeT;
public LobbyTimeAckPacket()
{
LocalTime = Environment.TickCount;
TimeT = Environment.TickCount;
}
public void Send(ushort packetId, Client client)
{
Packet packet = new Packet(packetId);
packet.Writer.Write(LocalTime);
packet.Writer.Write(TimeT);
client.Send(packet);
}
}
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)