Valhalla Legends Forums Archive | Battle.net Bot Development | IPban.

AuthorMessageTime
Luxer
Could somone please tell me what my bot could possiblbly be doing (telnet bot, no hashing or BNLS) to get IPban evertime I try to connect?
July 22, 2004, 12:55 PM
Tuberload
Post a log of you doing whatever you do that gets you banned.
July 22, 2004, 2:33 PM
OnlyMeat
[quote author=Luxer link=board=17;threadid=7815;start=0#msg71838 date=1090500940]
Could somone please tell me what my bot could possiblbly be doing (telnet bot, no hashing or BNLS) to get IPban evertime I try to connect?
[/quote]

Am i understanding you correctly you are just using a text gateway bot?

If so then are you initializing the login sequence once you have established a tcp/ip connection to the server i.e

[code]
CPacket Packet;
   
Packet << (BYTE)0x03 // Init login byte 3=text gateway
<< (BYTE)0x04 // Dont send me 0x25
<< m_sAccount // bnChat Account
<< "\r\n" // CRLF
<< m_sPassword // bnChat Password
<< "\r\n"; // CRLF
Packet.Send(m_conn_socket);
[/code]

If you dont even get to this point ie. cant establish a connection then you need to check how you are connecting, you should be using tcp/ip and connecting on port 0x17E0.

If this does not work then you need to elaborate more on what language you are using vb/c++ etc maybe post the code you are using and//or the socket parameters you are using.
July 22, 2004, 3:52 PM
Eli_1
[quote author=OnlyMeat link=board=17;threadid=7815;start=0#msg71854 date=1090511576]
... you should be using tcp/ip and connecting on port 0x17E0.
[/quote]

Haha. :P
July 22, 2004, 4:36 PM
Myndfyr
I wanted to correct something here:

[quote author=OnlyMeat link=board=17;threadid=7815;start=0#msg71854 date=1090511576]
[code]
CPacket Packet;
   
Packet << (BYTE)0x03 // Init login byte 3=text gateway
<< (BYTE)0x04 // Dont send me 0x25
[/code]
[/quote]
Sending 0x04 (or CTRL+D) doesn't tell it to *not* send 0x25 -- it won't send 0x25 on a text gateway client anyway. Sending 0x04 (or CTRL+D) disables remote echo.
July 22, 2004, 5:09 PM

Search