[C# coder help request]SR_RESET_CLIENT_ACK:: Can't find LobbyEntry!

07/04/2015 00:16 ahmed4ever2u#1
okay as you people know i develop silkroad tools for over 3 years now
i coded my client less bot which excute several commands ingame
but i have a problem
which is when the bot tries to move itself to another place using warp or movetouser the bot gets simply disconnected and the gameserver popup this message SR_RESET_CLIENT_ACK:: Can't find LobbyEntry![JID:1577]

tried many released bots and same error pops up

my code
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
07/04/2015 01:28 Aaron*#2
Quote:
Originally Posted by ahmed4ever2u View Post
okay as you people know i develop silkroad tools for over 3 years now
i coded my client less bot which excute several commands ingame
but i have a problem
which is when the bot tries to move itself to another place using warp or movetouser the bot gets simply disconnected and the gameserver popup this message SR_RESET_CLIENT_ACK:: Can't find LobbyEntry![JID:1577]

tried many released bots and same error pops up

my code
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
When moving to a user, you should send the spawn confirmation packet to the agent server (packet is 0x34b6). About warp, idk never tried it tbh.
Quote:
Packet px1 = new Packet(0x7010);
Packet px2 = new Packet(0x34b6);
px1.WriteUInt16((ushort)31);
px1.WriteUInt16((ushort)11);
px1.WriteAscii(MoveCharName);
Send(px1);
Send(px2);
Try this one to move to a user.
07/04/2015 01:32 ahmed4ever2u#3
spawn conformation already done automatically.
[Only registered and activated users can see links. Click Here To Register...]
07/04/2015 02:23 magicanoo#4
Your warp coords could simply be wrong.
07/04/2015 02:27 Devsome#5
#reported your old thread.

[Only registered and activated users can see links. Click Here To Register...]

just watch my answer there.
07/04/2015 22:08 ahmed4ever2u#6
bump

[Only registered and activated users can see links. Click Here To Register...]
07/05/2015 02:25 Eslam Galull#7
Move to char packet not right ...

use this

Packet p = new Packet(0x7010);
p.WriteUInt16(0x08);
p.WriteAscii("CharBOT");
Agent. Send(p);
07/05/2015 03:10 ahmed4ever2u#8
Quote:
Originally Posted by its.soul View Post
Move to char packet not right ...

use this

Packet p = new Packet(0x7010);
p.WriteUInt16(0x08);
p.WriteAscii("CharBOT");
Agent. Send(p);
doesnt really matter you sent it as uint16 which will send 0800
i sent it int8 =08 then added int8 = 00 i total packet will be like 0800
07/05/2015 03:11 Royalblade*#9
Quote:
Originally Posted by its.soul View Post
Move to char packet not right ...

use this

Packet p = new Packet(0x7010);
p.WriteUInt16(0x08);
p.WriteAscii("CharBOT");
Agent. Send(p);
I laughed really hard.
08/03/2021 02:35 nevet.S#10
Same error here, if u fixed it can u share solution. thanks :)