Jump to content
Korean Random

SRQFlyer

User
  • Content Count

    53
  • Joined

  • Last visited

Everything posted by SRQFlyer

  1. It has been out since 11/19. http://nightly.modxvm.com/
  2. I am sure you can in XVM by not including the row in teh player panels. I haven't looked for it thought.
  3. It is in the WoT 9.20.1 release notes. It shows the missions you have completed.
  4. It is actually hard. You have to gather all the stats from the servers. This alone is a huge amount of data. Once you have raw data you need to use R to do the necessary analysis on the data, this takes skilled data/analytics people. Then the data has to be vetted, once all that is done, you can post the update.
  5. Read here https://koreanrandom...ting-wrong-wn8/ or in any of multiple similar topics here...
  6. You do not have anything install per the log. 2017-08-09 10:42:35.125: INFO: [PY_DEBUG] Checking ./res_mods/0.9.19.1: mods not found 2017-08-09 10:42:35.125: INFO: [PY_DEBUG] Checking ./mods/0.9.19.1: mods not found What is the exact location you are putting the files? You need to copy the XVM folder into WOT folder and not into a sub folder.
  7. The log says you are not running any mods. 2017-07-26 20:07:32.780: INFO: [PY_DEBUG] Checking ./res_mods/0.9.19.1: mods not found 2017-07-26 20:07:32.780: INFO: [PY_DEBUG] Checking ./mods/0.9.19.1: mods not found The XVM mods go to two locations now, I am guessing you have them in the wrong folders.
  8. If WOT was really blocked for both outbound and inbound the game would not work at all.
  9. Have you though about posting your XVM & Python log so people can see what is happening.
  10. Are you adding individual icons or the new Atlases? BattleAtlas.PNG, BattleAtlasXML, VehicleMarker.PNG, VehicleMarker.XML
  11. You are correct with that, incremental is a much better word. :)
  12. Tabs are cumulative. <textformat tabstops='[30,60,110,200,240]'> This sets the tabs at 30, 60,110 and so on.
  13. Let's see, hmmm.... they are both saying the same thing so no need to slam google translate. The old version is, well the only % based version of the who will win prediction.
  14. Google Translate, it is a wonderful thing... We are preparing some fine-tuning and will roll out a more flexible solution to py_macro, including permitting the use of the familiar old version of the display.
  15. They maybe reworking the calculations to account for all the changes in 9.18.
  16. Look in the default folder, all the files in there are what you can edit.
  17. Does anyone know if there is a way to use images in the battleatlas for icons/images? The matching XML files defines the name an location within the png file. Seems like there should be a routine to return the image.
  18. You need to ask at http://www.wnefficiency.net/wnexpected/ when the stats will be out. Any site that gives you a wn8 is guessing and it will change once the real values are published.
  19. Sorry for leaving out. From Python log: 2016-11-10 16:28:58.960: ERROR: <unknown>: inconsistent use of tabs and spaces in indentation From XVM Log: 2016-11-10 16:28:58: [ERROR] Traceback (most recent call last): File "C:\Games\World_of_Tanks\res_mods\mods/packages\xvm_main\python\python_macro.py", line 127, in load_macros_lib code = load(file_name) File "C:\Games\World_of_Tanks\res_mods\mods/packages\xvm_main\python\python_macro.py", line 101, in load return parse(source, file_name) File "C:\Games\World_of_Tanks\res_mods\mods/packages\xvm_main\python\python_macro.py", line 91, in parse node = ast.parse(source) File "scripts/common/Lib/ast.py", line 37, in parse File "<unknown>", line 105 log('{}'.format(expDamage)) ^ IndentationError: unexpected indent
  20. To print the expDamage would this be the correct format? self.DIFFExpDmg = int(self.damage - expDamage) log('{}'.format(expDamage)) I am getting and error when I try this.
  21. I ran my Lowe and the expected damage was showing as 1403, from the json file the Lowe should have a expected damage of 1241. I changed: self.DIFFExpDmg = int(self.damage - expDamage) to self.DIFFExpDmg = int(expDamage) and then to self.DIFFExpDmg = int(self.damage) just so i could see the expDamage and self damage. The expDamage is showing the incorrect value. expDamage I have noticed in some other tanks the values are also off. I am wondering if the IDNum is not returning the correct values. Is there a way to put a printf or log() statement in code so I can print to the python log what the values are?
×
×
  • Create New...