Jump to content
Korean Random

XVM-Tanker

User
  • Posts

    16
  • Joined

  • Last visited

Posts posted by XVM-Tanker

  1. Hi,

    there is a problem with "math_div" in "math.py":

     

    Now it is called:

     

    # Division. Деление.
    @xvm.export('math.div')
    def math_div(a, b):
        return a / b

     

    It should be:

     

    # Division. Деление.
    @xvm.export('math.div')
    def math_div(a, b):
        return a / float(b)

     

    Is it posssible to be fixed by default?

    I have to change it every time I update XVM.

     

    Thx :)

  2. Why you don't put "hpSpotted" and "hpLost" into "minimapLabelsTemplates.xc"?

    That's my solution.

     

    "formats": [
          //${ "default/minimapLabelsTemplates.xc":"def.vtypeSpotted" },
          ${ "default/minimapLabelsTemplates.xc":"def.vehicleSpotted" },
          ${ "default/minimapLabelsTemplates.xc":"def.nickSpotted" },
          ${ "default/minimapLabelsTemplates.xc":"def.xmqpEvent" },
          ${ "default/minimapLabelsTemplates.xc":"def.vtypeLost" },
          ${ "default/minimapLabelsTemplates.xc":"def.vehicleLost" },
          ${ "default/minimapLabelsTemplates.xc":"def.nickLost" },
          ${ "default/minimapLabelsTemplates.xc":"def.vtypeDead" },
          ${ "default/minimapLabelsTemplates.xc":"hpSpotted" },  <---
          ${ "default/minimapLabelsTemplates.xc":"hpLost" } <---
        ]

  3. Hi,

    I have a little problem.

    I have used the "default"-config and changed "mapSize" for test.

     

    I have written two different types of "mapSize". One for "minimap.xc" and one for "minimapAlt.xc".

    I have just changed the "format". Now both are displayed at the same time.

     

    My config:

     

    "minimap.xc"

    minimap.xc: {

        ...

        "mapSize": ${"minimapMapSize.xc":"mapSize"},

        ...

    }

     

    //

    "minimapMapSize.xc"

    "mapSize": {
        ...
        "format": "0",

        ...

    }

    //

    //
    "minimapAlt.xc"

    minimap.xc: {

        ...

        "mapSize": ${"minimapMapSizeAlt.xc":"mapSize"}

        ...

    }

    //

    "minimapMapSizeAlt.xc"

    "mapSize": {
        ...
        "format": "     1",

        ...

    }

  4. Perhaps you can change this:

    "vehicleShadowLeft":  null,

    "vehicleShadowRight": null,

     

    So you delete "null" and put a color you want.

    Perhaps it works. I can't test it because my xvm is down caused by patch 0.9.15.2.

     

     

    Sry, it doesn't work as i thought.


    But is there any possibility to change the color of the "SelectedBackground"? That would be my best solution.

  5. Hello,

    I have two questions:

     

    The first one: (Little freeze)

    I have a problem with XVM. Every two seconds, there is a little freeze on the screen. It just happens when I use XVM. I have already deleted all other mods but nothing has changed. So I think the freeze has to be caused by XVM.

    I have already loaded the "default"-config but with the same problem.

     

    Is there any solution?

     

     

    The second one : (iconset.xc)

    Now it is called:

     

    "iconset": {
      "battleLoadingAlly": "contour/",

      .

      .

    }

     

    Is it possible to do:

     

    "iconset": {
      "battleLoadingAlly": "cfg://contour/",

      .

      .
    }

     

    Thanks.

×
×
  • Create New...