Jump to content
Korean Random

SRQFlyer

User
  • Content Count

    53
  • Joined

  • Last visited

Posts posted by SRQFlyer


  1. can't new tanks be added to v29?

    it can't be that hard.

     

    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.


  2. attached python.log from newly installed WoT

    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.


  3. Cant find the XVM.log... I am wondering if the mods are in the wrong folder for some reason they seem a bit buried...?

    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.


  4. Hi all, having a little trouble with a contour icon mod.

    XVM is all working fine, but when i add a countour pack into 'world of tanks/res_mods/0.9.19.0/gui/maps/icons/vehicle/contour' it completely disables the damage panel.

    Is there a better location to put contour icons so that xvm finds them easier/better?

     

    Thanks, Richie.

    Are you adding individual icons or the new Atlases?  BattleAtlas.PNG, BattleAtlasXML, VehicleMarker.PNG, VehicleMarker.XML


  5. 2 translations, 2 different meanings about the py_macro part, and the last part is still unclear (what is the "familiar old version of the display" supposed to be?). I guess Vlad's translation is the most correct, and Google's translation is crappy as usual...

     

    Well, thanks anyway, I guess we'll just have to wait for related commits to understand what all that mean.

    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.  


  6. What error?

    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


  7. 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?


  8. @SRQFlyer, your battleLabelsTemplates.xc:

    "format": "<textformat tabstops = '[80]'> WN8: {{py: efficiencyWN8()}} <tab> EFF: {{py: efficiencyEFF}} <br/> DIFF: {{py: efficiencyDIFFExpDmg}} <tab> DMG: {{hitlog.dmg-total()}} </ textformat> "
    

    should be like this:

    "format": "<textformat tabstops = '[80]'> WN8: {{py:efficiencyWN8()}} <tab> EFF: {{py:efficiencyEFF}} <br/> DIFF: {{py:efficiencyDIFFExpDmg}} <tab> DMG: {{hitlog.dmg-total()}} </ textformat> "
    

    I.e., you must delete all spaces (" ") from py_macro.

     

    Thank you for the help I completely overlooked those spaces.

×
×
  • Create New...