Valhalla Legends Forums Archive | Battle.net Bot Development | [any bot]login problems

AuthorMessageTime
sub1imina1
when i try to log in to one of my accounts it receives no response from the login packet. its just for that one account. for example when i use stealthbot the last thing it says is "sending login information..." and nothing happens. why arent i getting a response?
September 6, 2004, 5:41 AM
BaDDBLooD
Your using Warcraft III Right? If you answered yes to this question, your account has been Closed By Blizzard Entertainment For Cheating.
September 6, 2004, 5:43 AM
Forged
haha pwnzored n00bzor
September 6, 2004, 5:45 AM
sub1imina1
no its starcraft. i just wrote a section in my bot to change a password and tried it on that account. if the change pass packet was incorrect is that punishable by closing of the account? cuz im not sure if i wrote the code right and it was a first attempt.
September 6, 2004, 5:46 AM
LW-Falcon
Maybe post some code?
September 6, 2004, 6:07 AM
UserLoser.
[quote author=BaDDBLooD link=board=17;threadid=8573;start=0#msg79197 date=1094449414]
Your using Warcraft III Right? If you answered yes to this question, your account has been Closed By Blizzard Entertainment For Cheating.
[/quote]

That doesn't make much sense. If your account is closed, Battle.net will tell you.
September 6, 2004, 6:24 AM
sub1imina1
ya i duno its driving me crazy it just simply sends no data back. the connection stays open as well. heres my shitty first attempt code:

[code]
void changepass(char *username, char *password, unsigned long encryptvalue, SOCKET s, PacketBuffer &packetbuf){
   
   unsigned long lngSeed, lngKey, lngValue1, lngValue2, lngValue3;
   unsigned long dblSeed, dblKey;
dblSeed = encryptvalue;
dblKey = GetTickCount();
lngSeed = dblSeed;
lngKey = dblKey;
   char newpassword[]="test";

   packetbuf.insert(dblKey);
   packetbuf.insert(dblSeed);
   if(HashPass(password, strlen(password), &lngKey, &lngSeed, &lngValue1, &lngValue2, &lngValue3, 0) == false){
      return;
      printf("failed to hash pass\r\n");
   }
   packetbuf.insert(lngKey);
   packetbuf.insert(lngSeed);
   packetbuf.insert(lngValue1);
   packetbuf.insert(lngValue2);
   packetbuf.insert(lngValue3);
   if(HashPass(newpassword, strlen(newpassword), &lngKey, &lngSeed, &lngValue1, &lngValue2, &lngValue3, 0) == false){
      return;
      printf("failed to hash pass\r\n");
   }
   packetbuf.insert(lngKey);
   packetbuf.insert(lngSeed);
   packetbuf.insert(lngValue1);
   packetbuf.insert(lngValue2);
   packetbuf.insert(lngValue3);
   packetbuf.insert(username);
   packetbuf.sendpacket(s, 0x31);

}
[/code]
September 6, 2004, 6:29 AM
UserLoser.
That's change password, not login. Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.
September 6, 2004, 7:04 AM
BaDDBLooD
Actually when i tried logging on Warcraft III with a bot, it just stopped at recieving 0x54. The status code 0x0F means your account has been closed for cheating etc..
September 6, 2004, 5:31 PM
UserLoser.
[quote author=BaDDBLooD link=board=17;threadid=8573;start=0#msg79197 date=1094449414]
Your using Warcraft III Right? If you answered yes to this question, your account has been Closed By Blizzard Entertainment For Cheating.
[/quote]

Not only for cheating, there's other reasons.
September 6, 2004, 6:36 PM
sub1imina1
[quote author=UserLoser. link=board=17;threadid=8573;start=0#msg79206 date=1094454262]
That's change password, not login. Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.
[/quote]

No I know thats change password. The account worked before i ran that code. Now when I attempt to log on to it it doesn't receive data. I've tried stealth, spht, eternal, my own bot, and zds. All the same. I would try with regular client but i lost my cd.
September 6, 2004, 6:38 PM
UserLoser.
[quote author=UserLoser. link=board=17;threadid=8573;start=0#msg79206 date=1094454262]
Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.
[/quote]
September 6, 2004, 7:11 PM
sub1imina1
[quote author=UserLoser. link=board=17;threadid=8573;start=0#msg79238 date=1094497915]
[quote author=UserLoser. link=board=17;threadid=8573;start=0#msg79206 date=1094454262]
Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.
[/quote]
[/quote]

nah thats not it either cuz i can log onto my other accounts with no problem. i waited overnight and half of today without connecting. has anyone ever had this problem with an account?
September 6, 2004, 8:25 PM
LW-Falcon
[quote author=sub1imina1 link=board=17;threadid=8573;start=0#msg79242 date=1094502340]
[quote author=UserLoser. link=board=17;threadid=8573;start=0#msg79238 date=1094497915]
[quote author=UserLoser. link=board=17;threadid=8573;start=0#msg79206 date=1094454262]
Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.
[/quote]
[/quote]

nah thats not it either cuz i can log onto my other accounts with no problem.
[/quote]
Thats a different account.
September 6, 2004, 8:41 PM

Search