Показать сообщение отдельно
Непрочитано 15.11.2014, 13:47   #9
Аватар для Exile03
Пользователь

Автор темы (Топик Стартер) Re: Может кто поможет мне

PROTOCOL_BASE_USER_LEAVE_REQ
Цитата:
using PBServer;
using PBServer.network;
using PBServer.network.serverpackets;

namespace PBServer.network.clientpacket
{
internal class PROTOCOL_BASE_USER_LEAVE_REQ : ReceiveBaseLoginPacket
{
public PROTOCOL_BASE_USER_LEAVE_REQ(LoginClient Client, byte[] data)
{
this.makeme(Client, data);
}

protected internal override void read()
{
}

protected internal override void run()
{
if (this.getClient() == null)
return;
this.getClient().sendPacket((SendBaseLoginPacket) new S_BASE_USER_LEAVE(this.getClient().getPlayer()));
}
}
}

This source c#
no have this .cs


2668 is packet PROTOCOL_BASE_GET_ITEMS_FOR_RANK_UP_REQ and waits server opcode 0xA6D.
2567 (PROTOCOL_BASE_GET_FRIENDS_REQ) waits server opcode 0x112.
Exile03 вне форума Ответить с цитированием