wazer Posted October 21, 2020 Posted October 21, 2020 (edited) This is how it is supposed to look like. This is how it is when using aslains pack, I have yet to locate which addon breaks numbers not showing up, it is however now the battleresults addon where you can pick other images to show above result that conflicts. Edited November 2, 2020 by wazer Quote
Moderator Quaksen Posted October 21, 2020 Moderator Posted October 21, 2020 I keep forgetting which one does that.. but I think it's XVM? You still see the damage anyways on the same screen, so not a big deal that those are changed. Quote
wazer Posted November 1, 2020 Author Posted November 1, 2020 On 10/21/2020 at 7:06 PM, Quaksen said: I keep forgetting which one does that.. but I think it's XVM? You still see the damage anyways on the same screen, so not a big deal that those are changed. Yes just tested for now its XVM, you got a contact with developers? I just did a plain install only with XVM and its XVM causing the issue. Quote
Moderator Quaksen Posted November 1, 2020 Moderator Posted November 1, 2020 Pretty sure it's intended by them. Since they replaced the display. The damage display is not where your arrow is normally. And the damage is on the left side. Their forum is at: https://koreanrandom.com/forum/forum/57-xvm-english-support-and-discussions/ Quote
wazer Posted November 2, 2020 Author Posted November 2, 2020 (edited) 13 hours ago, Quaksen said: Pretty sure it's intended by them. Since they replaced the display. The damage display is not where your arrow is normally. And the damage is on the left side. Their forum is at: https://koreanrandom.com/forum/forum/57-xvm-english-support-and-discussions/ Just got an answer, can this be implemented into aslain as an option? https://koreanrandom.com/forum/topic/59920-xvm-addon-bug-been-there-for-years-missing-damage-in-the-overview-result/?tab=comments#comment-491856 I tested and works as inteded now :) Edited November 2, 2020 by wazer Quote
Moderator Quaksen Posted November 2, 2020 Moderator Posted November 2, 2020 4 hours ago, wazer said: Just got an answer, can this be implemented into aslain as an option? I tested and works as inteded now :) Can I ask why you'd like the option added? I mean.. you have the damage/assisted numbers displayed on the left: Quote
wazer Posted November 2, 2020 Author Posted November 2, 2020 (edited) 1 hour ago, Quaksen said: Can I ask why you'd like the option added? I mean.. you have the damage/assisted numbers displayed on the left: Because its easy to see who and what you did damage did while scouting down list, you don't have to look left and right all the time, its more organized Waaaaay better.. Edited November 2, 2020 by wazer Quote
Moderator Quaksen Posted November 2, 2020 Moderator Posted November 2, 2020 7 minutes ago, wazer said: Because its easy to see who and what you did damage did while scouting down list, you don't have to look left and right all the time, its more organized That's not how it works though. You look left, to see the total damage. And you look right, to see who you damaged. There's no numbers on each person unless you mouse over the icons. The edit you did should only add a line that then shows the total damage you did - so same information, right? If it says "2500" on the left, or "2500" on the left and the right... is that a big deal? It's not like it would show like: Total: 2500 Tank 1: 600 Tank 2: 800 Tank 3: 400 Tank 4: 300 Tank 5: 400 I don't see this being added.. it would just add the same information you already have available. It's on the left. The edit would add the same exact number on the right. That's it. But it's up to Aslain, of course. I'm just asking, since we are both curious why you'd want it. Edit: You can take your edited "battleResults.xc" and use Aslain's Custom Mods folder. If you create a properly structured zip file and place there, it'll be auto done each modpack installation. If you're not sure how to get the zip created, you can attach the battleResults.xc file here, and I'll make the zip for you. 1 Quote
Moderator Quaksen Posted November 2, 2020 Moderator Posted November 2, 2020 40 minutes ago, wazer said: Waaaaay better.. All I see there, is 1995 in two places. The only benefit would be on arty I think, seeing the total stun assist as it oddly doesn't count towards assisted. Quote
wazer Posted November 2, 2020 Author Posted November 2, 2020 (edited) On 11/1/2020 at 10:59 PM, Quaksen said: Pretty sure it's intended by them. Since they replaced the display. The damage display is not where your arrow is normally. And the damage is on the left side. Their forum is at: https://koreanrandom.com/forum/forum/57-xvm-english-support-and-discussions/ @Aslain I just created code to check for value showtotals and false change it to true, i guess this code is no longer needed since aslain just implemented it :) Feel free to use it for many other things code is based on autoit and works great without any performance issues. it automatic figure out world of tank path and then starts doing its thing. Opt("TrayIconHide", 1) $find_wot_path = RegRead("HKEY_CLASSES_ROOT\.wotreplay\DefaultIcon", "") If @error Then MsgBox(16, "XVM Change battleresults showTotals to true", "Did you remember to launch the game atleast once after installing/upgrading your WoT game?") exit endif $wot_string_part = StringReplace($find_wot_path, "\worldoftanks.exe", "") $wot_string_part2 = StringReplace($wot_string_part, "win64", "res_mods\configs\xvm\Aslain") $wot_string_part3 = StringReplace($wot_string_part2 , ",1", "") $wot_string_part4 = StringReplace($wot_string_part3, """", "") $wot_string_part5 = ($wot_string_part4 & "\battleResults.xc") If FileExists($wot_string_part5) Then $battleresult_file = $wot_string_part5 $battleresult_file_read = FileRead($battleresult_file,FileGetSize($battleresult_file)) $pattern = '([\t ]*)"showTotals":([\t ]*)false'; "showTotals": & false is the value searching for $magic_regex = StringRegExpReplace($battleresult_file_read, $pattern, '\1"showTotals":\2true');"showTotals": & true is the value its replacing ConsoleWrite( @CRLF & $magic_regex & @CRLF & @CRLF) FileDelete($battleresult_file) FileWrite($battleresult_file,$magic_regex) endif I just tested latest installer, was it not fixed or mine just bugging? I dont see it was changed in the xc file Edited November 2, 2020 by wazer Quote
Moderator Quaksen Posted November 2, 2020 Moderator Posted November 2, 2020 But again... 716 on the left, 2098 on the left. 716 on the right, 2098 on the right... Quote
wazer Posted November 3, 2020 Author Posted November 3, 2020 22 hours ago, Quaksen said: But again... 716 on the left, 2098 on the left. 716 on the right, 2098 on the right... Jamen hvad skal en player gø! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.