Heres my packet now, is it fixed?
My timezone is 240 now, is that fixed?
Code Select
ff 50 3a 00 ÿP:. - (DWORD) Header
00 00 00 00 .... - (DWORD) Protocol ID (0)
36 38 58 49 68XI - (DWORD) Platform ID
50 58 33 57 PX3W - (DWORD) Product ID
15 00 00 00 .... - (DWORD) Version Byte
53 55 6e 65 SUne - (DWORD) Product language
c0 a8 01 07 ˬ.. - (DWORD) Local IP for NAT compatibility*
f0 00 00 00 ð... - (DWORD) Time zone bias*
09 04 00 00 .... - (DWORD) Locale ID*
09 04 00 00 .... - (DWORD) Language ID*
55 53 41 00 USA. - (STRING) Country abreviation
55 6e 69 74 65 64 20 53 74 61 74 65 73 00 United States. - (STRING) Country
My timezone is 240 now, is that fixed?
Code Select
With AuthInfo
.InsertInt32(&H0) 'Protocol ID
.InsertDwordString("IX86") 'Platform ID
.InsertDwordString(Product) 'Product ID
.InsertInt32(CInt(MBNCSUtil.CheckRevision.GetVersionByte(Product))) 'Version Byte
.InsertInt32(StringToHex(CultureInfo.CurrentCulture.Name.Remove(2, 1))) 'Product language
.InsertInt32(inet_addr(System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName()).AddressList(0).ToString)) 'Local IP (in network byte order)
.InsertInt32(DateTime.UtcNow.Subtract(DateTime.Now).TotalMinutes) 'Timezone bias
.InsertInt32(CultureInfo.CurrentCulture.LCID) 'MPQ Locale ID
.InsertInt32(CultureInfo.CurrentCulture.LCID) 'Language ID
.InsertCString(Globalization.RegionInfo.CurrentRegion.ThreeLetterWindowsRegionName) 'Country Abbreviation
.InsertCString(Globalization.RegionInfo.CurrentRegion.NativeName) 'Country
AddChat(.ToString)
End With