Jump to content
Korean Random

scyorkie

User
  • Content Count

    381
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by scyorkie


  1. I think what he means is that if you have Player A on your blacklist, it shows correctly on your players panel. However, if you press Tab, Player A is not shown to be on your blacklist. Instead, it is Player B that is shown as blacklisted there.

     

    (Not sure if this is XVM bug though. Have not tested it with vanilla client. Just trying to explain what OP means.)


  2. I'll use mine as an example (file is attached).

     

    In colors.xc there are 2 main sections - "def" and "colors".

     

    Under "def" I've defined the color values (under "colorRatingNew") as follows (I flipped my dark and light greens):

     

    "colorRatingNew": {
      "below_average": "0xC00B00",    // red1
      "average":  "0xFE0E00",            // red2
      "above_average": "0xF8AF00",   // orange
      "intermediate": "0xF8F400",       // yellow
      "adequate":       "0x44B400",      // green1
      "good":   "0x60FF00",                // green2
      "very_good":  "0x00FFCC",        // blue1
      "great":   "0x00B4FF",               // blue2
      "unicum":   "0xAE42F3",           // purple1
      "super_unicum": "0x9000FF"     // purple2
    },

     

    Under "colors" the WN8 and winrate values are as follows:

     

    // Dynamic color by WN8 rating
    "wn8": [
      { "value": 300,  "color": ${"def.colorRatingNew.below_average" } },
      { "value": 450,  "color": ${"def.colorRatingNew.average"   } },
      { "value": 650,  "color": ${"def.colorRatingNew.above_average" } },
      { "value": 900,  "color": ${"def.colorRatingNew.intermediate"  } },
      { "value": 1200, "color": ${"def.colorRatingNew.adequate"   } },
      { "value": 1600, "color": ${"def.colorRatingNew.good"    } },
      { "value": 2000, "color": ${"def.colorRatingNew.very_good"  } },
      { "value": 2450, "color": ${"def.colorRatingNew.great"   } },
      { "value": 2900, "color": ${"def.colorRatingNew.unicum"   } },
      { "value": 99999, "color": ${"def.colorRatingNew.super_unicum" } }
    ],
    // Dynamic color by win percent
    "winrate": [
      { "value": 46,  "color": ${"def.colorRatingNew.below_average"  } },
      { "value": 47,  "color": ${"def.colorRatingNew.average"   } },
      { "value": 48,  "color": ${"def.colorRatingNew.above_average"  } },
      { "value": 50,  "color": ${"def.colorRatingNew.intermediate"  } },
      { "value": 52,  "color": ${"def.colorRatingNew.adequate"   } },
      { "value": 54,  "color": ${"def.colorRatingNew.good"    } },
      { "value": 56,  "color": ${"def.colorRatingNew.very_good"   } },
      { "value": 60,  "color": ${"def.colorRatingNew.great"    } },
      { "value": 65,  "color": ${"def.colorRatingNew.unicum"   } },
      { "value": 101, "color": ${"def.colorRatingNew.super_unicum"  } }
    ],

     

    The above affects all {{c:wn8}} and {{c:winrate}} macros.

    colors.xc

    • Upvote 1

  3. Issue 1 - playersPanel

     

    This is what my playersPanel looks like on the left side - {{clan}}{{name%.10s~..}}

     

    xWUMqYw.jpg

     

    When I blacklist someone, or if he joins the platoon (dynamic platoon), the display is overridden (by what I guess is the vanilla client's players' panel display). Here, I'm using battle_mario[FU] as a test by blacklisting him during the game:

     

    e26fTbH.jpg

     

    Any idea what causes this?

     

     

    Issue 2 - statisticForm

     

    Once in a while, a name on the left side becomes misaligned, both horizontally and vertically. Example:

     

    kOitSH5.jpg

     

    I saw it once yesterday, and another time today. It doesn't have to be the first name in the list, nor does it have to be directly above mine.

     

    I'm not sure how to reproduce this error.

     

    I have attached my configs for reference.

    playersPanel.xc

    statisticForm.xc

×
×
  • Create New...