Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: NetNX on October 30, 2004, 11:18 PM

Title: ^_^ back
Post by: NetNX on October 30, 2004, 11:18 PM
Quote
(DWORD)       Logon Type
(DWORD)       Server Token
(DWORD)       UDPValue**
(FILETIME)    MPQ filetime
(STRING)     IX86ver filename
(STRING)     ValueString
http://bnetdocs.valhallalegends.com/content.php?Code=3

I'm wondering how to send FILETIME and what exactly it does. :-/
And on another note please dont PM me about NLS.dll i dont care about Warcraft III stuff anymore so dont bother me.
Title: Re: ^_^ back
Post by: UserLoser. on October 30, 2004, 11:27 PM
Battle.net sends it to you
Title: Re: ^_^ back
Post by: NetNX on October 30, 2004, 11:37 PM
im trying to send it to my d2 client
(trying to craft a weird sort of application)
Title: Re: ^_^ back
Post by: LivedKrad on October 30, 2004, 11:50 PM
Take the value Battle.net gives you and then send it.
Title: Re: ^_^ back
Post by: BaDDBLooD on October 31, 2004, 01:51 AM
Filetime is a QWORD, 8 BYTES, 4 WORDS, 2 DWORDS.

EDIT: Wow i was sleepy
Title: Re: ^_^ back
Post by: Eric on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD

No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.
Title: Re: ^_^ back
Post by: NetNX on October 31, 2004, 10:14 AM
<3 TY :)
Title: Re: ^_^ back
Post by: MyndFyre on October 31, 2004, 03:46 PM
Quote from: LoRd[nK] on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD

No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.

Although really, a FILETIME structure is a QWORD when represented in memory.  :P
Title: Re: ^_^ back
Post by: Skywing on November 01, 2004, 12:38 AM
Quote from: MyndFyre on October 31, 2004, 03:46 PM
Quote from: LoRd[nK] on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD

No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.

Although really, a FILETIME structure is a QWORD when represented in memory.  :P
No, because it's not guaranteed to be aligned like a ULONGLONG would be (http://weblogs.asp.net/oldnewthing/archive/2004/08/25/220195.aspx).
Title: Re: ^_^ back
Post by: MyndFyre on November 01, 2004, 02:01 AM
Quote from: Skywing on November 01, 2004, 12:38 AM
Quote from: MyndFyre on October 31, 2004, 03:46 PM
Quote from: LoRd[nK] on October 31, 2004, 01:07 AM
Quote from: BaDDBLooDmpq is a QWORD

No, it's a 64-bit FILETIME (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/filetime_str.asp) structure and it should be handled as such.

Although really, a FILETIME structure is a QWORD when represented in memory.  :P
No, because it's not guaranteed to be aligned like a ULONGLONG would be (http://weblogs.asp.net/oldnewthing/archive/2004/08/25/220195.aspx).

Ooooh, neato.  Thanks for the info Skywing!