koliva8245
koliva8245
Sorry can't, no easy way. I think the way it was done for StarCraft 2 was that the map editor had an export data option or something. So either blizzard...
Seems to be working fine for me. Verify you have the correct season and draft modes selected along with the `All in a Party` option. Should probably post some screenshots....
If the region isn't select it actually defaults to XX (ptr) and if you get a BattleTag not found, then it defaults to an empty battletag (basically treated as any...
1a. Yes it should be solo queue stats. You can verify it by just searching on the match page for a single game mode. Yes I see what you mean...
```C# var httpContext = new DefaultHttpContext(); var cookies = Substitute.For(); cookies.TryGetValue("hello", out Arg.Any()).Returns(x => { x[1] = "world!"; return true; }); var result = cookies.TryGetValue("hello", out var value); Assert.AreEqual("world!", value);...
Unfortunately the only implementation of `IRequestCookieCollection` is `RequestCookieCollection` which has been set as internal. It seems that the `httpContext.Request.Cookies` value cannot be changed, since even setting is as `null` doesn't...
This project is already up to date, as for Heroes Match Tracker, I may work on creating a new version in the far future. Money is not a concern, but...
Just when I started looking at the battlelobby again... Thank you. It will take me some time to validate this and convert to C#.
Some things as I'm going through. `('_bitarray', [(32, 0)]), #6198` -> this is a string (or blob) of 4 bytes. It is an attribute value. `('_struct', [[('f32', 6200, 0), ('NewField6',...
I should not have said, blob, that implies a byte aligned string, the 4 bytes are unaligned. 1. `('_bitarray', [(32, 0)]), #6226` -> is also a 4 unaligned byte string...