Escape Captcha While Loading

03/14/2018 18:04 Mr.Awesome1337#1
When i try to a login to a server as clientless if the server hasn't captcha the program stop at characher has been selected and the charcter didn't spawned,but now I need to check if there aren't a captcha exist the program escape it and continue logining
I'm using a notice src
03/15/2018 06:07 SubZero**#2
else if ((current.Opcode == 0xa323) && (current.ReadUInt8() != 1))
{
current.ReadUInt8Array(4);
byte num10 = current.ReadUInt8();
ErrorTypeLog("Wrong Captcha (" + num10 + "/3)", new object[0]);
if (num10 == 3)
{
ErrorTypeLog("Disconnected !..", new object[0]);
}
}
else if (current.Opcode == 0x2322)
{
Packet packet = new Packet(0x6323);
packet.WriteAscii("");//change it to the Captcha text
Agent.Send(packet);
}
if you not set a Captcha this will work
03/15/2018 12:19 Mr.Awesome1337#3
Quote:
Originally Posted by Zoro.Sro View Post
else if ((current.Opcode == 0xa323) && (current.ReadUInt8() != 1))
{
current.ReadUInt8Array(4);
byte num10 = current.ReadUInt8();
ErrorTypeLog("Wrong Captcha (" + num10 + "/3)", new object[0]);
if (num10 == 3)
{
ErrorTypeLog("Disconnected !..", new object[0]);
}
}
else if (current.Opcode == 0x2322)
{
Packet packet = new Packet(0x6323);
packet.WriteAscii("");//change it to the Captcha text
Agent.Send(packet);
}
if you not set a Captcha this will work
What you mean
//Change it to captcha text
And where i can put this code
03/15/2018 14:44 SubZero**#4
Quote:
Originally Posted by Mr.Awesome1337 View Post
What you mean
//Change it to captcha text
And where i can put this code
if the captcha is disabled in server.cfg
dont change the code

GatewayServer {
LastFullVersion_SR_Client 1
Certification "192.168.1.2", 64327
IBUVQueueReserveCount 20000
IBUVQueuePrepareRatio 0.10
IBUVFailureIPTolerance 0
IBUVStringSize 0 //disabled
IBUVCharacterSet "0"
}
////////////////////////////////////////////////////////////////
GatewayServer {
LastFullVersion_SR_Client 1
Certification "192.168.1.2", 64327
IBUVQueueReserveCount 20000
IBUVQueuePrepareRatio 0.10
IBUVFailureIPTolerance 0
IBUVStringSize 1 //enabled
IBUVCharacterSet "a"
}
so how i can put the text if it enable
set a captcha in ur program to read it
maybe text
captcha=a
in program read captcha
where you can put the code
in gateway.cs
03/17/2018 15:36 Mr.Awesome1337#5
up
03/24/2018 10:05 Isoline*#6
If the server doesnt send any captcha info, skip it and do what you would normally do, You dont have to enforce the captcha with a nulled string if there is no req for it in the first place.