Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: sub1imina1 on September 06, 2004, 12:41 AM

Title: [any bot]login problems
Post by: sub1imina1 on September 06, 2004, 12:41 AM
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?
Title: Re:[any bot]login problems
Post by: BaDDBLooD on September 06, 2004, 12:43 AM
Your using Warcraft III Right?  If you answered yes to this question, your account has been Closed By Blizzard Entertainment For Cheating.
Title: Re:[any bot]login problems
Post by: Forged on September 06, 2004, 12:45 AM
haha pwnzored n00bzor
Title: Re:[any bot]login problems
Post by: sub1imina1 on September 06, 2004, 12:46 AM
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.
Title: Re:[any bot]login problems
Post by: Falcon[anti-yL] on September 06, 2004, 01:07 AM
Maybe post some code?
Title: Re:[any bot]login problems
Post by: UserLoser. on September 06, 2004, 01:24 AM
Quote from: BaDDBLooD on September 06, 2004, 12:43 AM
Your using Warcraft III Right?  If you answered yes to this question, your account has been Closed By Blizzard Entertainment For Cheating.

That doesn't make much sense.  If your account is closed, Battle.net will tell you.
Title: Re:[any bot]login problems
Post by: sub1imina1 on September 06, 2004, 01:29 AM
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:


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);

}
Title: Re:[any bot]login problems
Post by: UserLoser. on September 06, 2004, 02:04 AM
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.
Title: Re:[any bot]login problems
Post by: BaDDBLooD on September 06, 2004, 12:31 PM
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..
Title: Re:[any bot]login problems
Post by: UserLoser. on September 06, 2004, 01:36 PM
Quote from: BaDDBLooD on September 06, 2004, 12:43 AM
Your using Warcraft III Right?  If you answered yes to this question, your account has been Closed By Blizzard Entertainment For Cheating.

Not only for cheating, there's other reasons.
Title: Re:[any bot]login problems
Post by: sub1imina1 on September 06, 2004, 01:38 PM
Quote from: UserLoser. on September 06, 2004, 02:04 AM
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.

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.
Title: Re:[any bot]login problems
Post by: UserLoser. on September 06, 2004, 02:11 PM
Quote from: UserLoser. on September 06, 2004, 02:04 AM
Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.
Title: Re:[any bot]login problems
Post by: sub1imina1 on September 06, 2004, 03:25 PM
Quote from: UserLoser. on September 06, 2004, 02:11 PM
Quote from: UserLoser. on September 06, 2004, 02:04 AM
Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.

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?
Title: Re:[any bot]login problems
Post by: Falcon[anti-yL] on September 06, 2004, 03:41 PM
Quote from: sub1imina1 on September 06, 2004, 03:25 PM
Quote from: UserLoser. on September 06, 2004, 02:11 PM
Quote from: UserLoser. on September 06, 2004, 02:04 AM
Note that after too many failed logon attempts or change password attempts, the server will ignore your requests for a long time.

nah thats not it either cuz i can log onto my other accounts with no problem.
Thats a different account.