Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: TriCk on September 06, 2003, 11:56 PM

Title: Latency
Post by: TriCk on September 06, 2003, 11:56 PM
Hey Ppl
I was wondering what other Latency's are attainable for VB6 Winsocks...

For 0ms its
  &H25
For -1ms its
  &H6

Any others i should know about ?
Title: Re:Latency
Post by: Soul Taker on September 07, 2003, 12:08 AM
What in the hell are you talking about?
Title: Re:Latency
Post by: TriCk on September 07, 2003, 12:14 AM
Im talking about the Packets you send to battle.net to connect with a spoofed ping, such as 0ms and -1ms ...
Title: Re:Latency
Post by: Noodlez on September 07, 2003, 01:05 AM
you just blew my mind
Title: Re:Latency
Post by: TriCk on September 07, 2003, 01:06 AM
><
Can Anyone help me :s
Title: Re:Latency
Post by: Camel on September 07, 2003, 02:18 AM
How does 0x06 help you get -1 ms? You get -1 by not sending 0x25, and zero by sending it in early.

"Ping" is the time in miliseconds battle.net calculates between when it sends 0x25 and when it parses the client's 0x25. It cannot be spoofed -- "ping" is a misnomer.
Title: Re:Latency
Post by: ______ on September 07, 2003, 10:19 AM
to get -1ms

1 Step- Dont Respond to packet &H25

to get 0ms

2 steps

step1 -Right After You Send packet &h50
do this

dim P as new packetbuffer
P.InsertDWORD &H0
   P.SendPacket &H25

Step 2-  Dont Respond to packet &H25

there you go enjoy.