Форум администраторов игровых серверов

Форум администраторов игровых серверов (https://forum.zone-game.info/TT.php)
-   Программирование / Programming (https://forum.zone-game.info/forumdisplay.php?f=98)
-   -   Может кто поможет мне (https://forum.zone-game.info/showthread.php?t=36890)

Exile03 14.11.2014 17:36

Может кто поможет мне
 
Может кто поможет мне
неоднократно менялся код операции
но не работает кто-нибудь знает, что может быть?


не всегда, войдите на ошибку счета
opcode : 2668
opcode : 2572
opcode : 4049

:( :( :(
доли не имеет работы

http://i.imgur.com/kaH2EKE.jpg

gorodetskiy 14.11.2014 19:11

Re: Может кто поможет мне
 
use your lang...

Pami 14.11.2014 19:54

Re: Может кто поможет мне
 
Что-то подсказывает что у тебя диапазон портов на который отправляется PROTOCOL_BASE_GET_SCHANNELIST_ACK не открыты. 127.0.0.1:136......

Something tells you that the port range to which to send PROTOCOL_BASE_GET_SCHANNELIST_ACK not open. 127.0.0.1:136 ......

PROGRAMMATOR 14.11.2014 23:24

Re: Может кто поможет мне
 
gorodetskiy, не думаю, что бразильский будет понятнее. :)

Exile03 15.11.2014 00:13

Re: Может кто поможет мне
 
know Other language?

PROGRAMMATOR 15.11.2014 00:44

Re: Может кто поможет мне
 
Yes I understand english.

Exile03 15.11.2014 03:32

Re: Может кто поможет мне
 
Ok thankyou
Man you understand this error why Opcode wrong no work i change every time for other but no work
opcode : 2668
opcode : 2572
opcode : 4049
opcode : 2577
opcode : 2567
can't connect account client you know
this server files i'm using MoMz Games Released one people
but this error i'm working this server very so much day's for fix ...

Добавлено через 2 часа 34 минуты
This Server files

Client : http://download1790.mediafire.com/bs...ank_100914.exe

Server :
Цитата:

https://mega.co.nz/#!iYlhWSjD!te1I3WuhZuf7TTOZ6yI4ukV3dCSbUwerof6sRgI BlYM
https://mega.co.nz/#!iYlhWSjD!te1I3W...werof6sRgIBlYM

PROGRAMMATOR 15.11.2014 12:28

Re: Может кто поможет мне
 
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.
2577 (PROTOCOL_BASE_USER_LEAVE_REQ) waits server opcode 0xA12.

Try to send this packet (I didn`t look into it):

SendPacket(new byte[] { 0x0c, 0x00, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 });
Code: C#

Before PROTOCOL_BASE_LOGIN_ACK (opcode 0xA04).

Exile03 15.11.2014 13:47

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.

PROGRAMMATOR 15.11.2014 21:26

Re: Может кто поможет мне
 
I gave you the opcodes and you must write the structure of packet.
Do it yourself.

p.s. You can find structure with the help of IDA Pro in pointblank.exe


Текущее время: 04:18. Часовой пояс GMT +3.

Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd. Перевод: zCarot