Jump to content
Korean Random
Dumadidak

[XVM] PREM tanks macro + clanlogo

Recommended Posts

Hello,

1. I'm looking for something like premium macro? In macros.txt I didn't find it to use with PlayersPanel.xc

I want to change colour of tier number which I put into the extrafield. I'm also curious if it is possible to make some list of tanks in new file (like vehicleNames.xc) and give them some output value? In my carousel I used {{v.premium}} but in pp it doesn't work :(

It will be nice to have that kind of macros:

 

VK 72.01 K   - "st"    (unique tank) - to make it green
CDC             - "pt"    (premium tank) - to make it gold

Cromwell       - ""      (standard tank) - to make it white

 

I'm using my bestfriend icons (man1aq_contourMod), and there are 3 types of icons.
09Ne5cR.png

 

Now I'm trying to make just XVM config without any icons but.... it is a little bit tricky and also very exciting/interesting but I need some expert's assistance to move it on.

 

 

2. I also have a problem with putting clan logo in extrafields.

 

I have some old script which I used years ago:

"src": "xvm://res/clanicons/EU/clan/{{clannb}}.png",

 

But now, it is useless because folder of clanlogos is almost empty - I have only few clan logos - (since a certain time xvm taking it from a web?).
Is it possible to make some dynamic url which it will take image from website? Or I have to download clan icons from web?

 

Can I put it into the "large" or "short" in extrafield parts? Or it is only main clanlogo option?

 

I will be grateful for any suggestions.

Greetings
Dupadidak

Share this post


Link to post

Short link
Share on other sites

You can use color macro {{c:vtype}} to mark premium tanks.

As for making a list, I think it's possible.

 

Yep, I tested it, and it's possible. I'm not sure how to do this by creating this list in a new file though. I'm not familiar with using references. I'll show you how to do it in the playerPanel.xc file.

 

So, in the above-mentioned file, in playersPanel section, create a new section

"vehicleNames":{
	"VK 72.01 K": "st",
	"AMX CDC": "pt",
        //etc.
	},

Now change the color parameter, wherever you want to use it, to

color='{{.playersPanel.vehicleNames.{{vehicle}}=st?#00ff00|{{.playersPanel.vehicleNames.{{vehicle}}=st?#FFD700|#ffffff}}}}'

As for clan icons, if you want to use them in extrafields, I guess downloading them is the only solution.

Edited by konrad509
  • Upvote 1

Share this post


Link to post

Short link
Share on other sites

Ok, for now I have a problem to make it work.

I made new file: 

 

vehicleTypeColors.xc

{
	// Color values depending on the vehicle type
    "def": 
        {
        "premium": "0xFFBB36",
        "standard": "0xFFFFFF",
        "special": "0x7FC435"
        }
},
{
	"vehicleTypeColors": 
	{
    "china-Ch04_T34_1":                     ${"def.standard"},
    "china-Ch24_Type64":                    ${"def.premium"},
    "china-Ch25_121_mod_1971B":             ${"def.special"},
[...]
        }
}


And I tried to use macros in PlayersPanel.xc: 

{{.vehicleTypeColors.vehicleTypeColors.{{vehicle}}}}
{{.vehicleTypeColors.vehicleTypeColors}}

There isn't any error, xvm working good but also showing nothing. I expected to see color code in the tabel (to see it working first, and next I wanted put this into the color="").


Can someone tell me what I'm doing wrong? Or maybe I should do that like You Konrad? But this is only for 2 colors not for 3 colors :( And ref should work - I did it same like in colors.xc

Greetings
Dupadidak


P.S I'll not answer for 3 days (out of town), but when I'll be back I'll read all and work on this problem again.

Share this post


Link to post

Short link
Share on other sites

any possible bugs:

 

I made new file:    vehicleTypeColors.xc

- file with the codes should be entered into the config, that is, a reference to it must be included in the @xvm.xc (or in colors.xc)

the best way (IMHO) to write in colors.xc (into section "colors", not "def") the following line:

"my": ${"vehicleTypeColors.xc":"vehicleTypeColors"},

and then use a macro like {{.colors.my.{{vehiclename}}}}, because it is necessary to use the macro {{vehiclename}} instead of {{vehicle}} with such write:

"vehicleTypeColors": { "china-Ch04_T34_1": ${"def.standard"}, "china-Ch24_Type64": ${"def.premium"}, "china-Ch25_121_mod_1971B": ${"def.special"},

 

wanted put this into the color=""

- in this case (when use html) the color code should be written in the format #000000 and not 0х000000,

 

and finally

'vehicleTypeColors.xc & playersPanel.xc etc.'

vehicleTypeColors.xc (without brackets in the middle)

{
  // Color values depending on the vehicle type
  "def": {
    "premium":  "#FFBB36",
    "standard": "#FFFFFF",
    "special":  "#7FC435"
  },
  "vehicleTypeColors": {
    "china-Ch04_T34_1":                     ${"def.standard"},
    "china-Ch24_Type64":                    ${"def.premium"},
    "china-Ch25_121_mod_1971B":             ${"def.special"},
    [...]
  }
}

 

playersPanel.xc etc.

"<font color='{{.colors.my.{{vehiclename}}}}'>...</font>"

 

  • Upvote 3

Share this post


Link to post

Short link
Share on other sites
But this is only for 2 colors not for 3 colors :(

It's for 3. I did it so that when a tank is neither premium nor special, a default colour is used, so you don't have to create a list for each kind of tank, but only for premium and special ones.

 

Anyway, use Kapany3uk's method.

  • Upvote 2

Share this post


Link to post

Short link
Share on other sites

It's WORKING! <3

Thank You guys!


Thank You Kapany3uk for your advices! Now I have my own vehicleTypeLabels.xc and working macro from colors.xc! Your tip was irreplaceable!

Konrad you also had a nice idea and for sure in future it'll be very helpfull to me (that idea of {{=?|=?|}} ) It is usefull!

......Now I'll try to do something with clan logos :]


'For intrested - Finite code of vehicleTypeLabels'



VehicleTypeLabels.xc - new file
/**
 * VehicleTypeLabels by Dumadidak
 */
{
	// Color values depending on the vehicle type
	"def": 
	{
        "premium": "#FFB932",
        "standard": "#FFFFFF",
        "special": "#77C129"
        },
	"vehicleTypeLabels": 
	{
    "china-Ch01_Type59":                    ${"def.premium"},
    "china-Ch01_Type59_Gold":               ${"def.premium"},
    "china-Ch02_Type62":                    ${"def.premium"},
    "china-Ch03_WZ-111":                    ${"def.premium"},
    "china-Ch04_T34_1":                     ${"def.standard"},
    "china-Ch04_T34_1_training":            ${"def.standard"},
    "china-Ch05_T34_2":                     ${"def.standard"},
    "china-Ch06_Renault_NC31":              ${"def.standard"},
    "china-Ch06_Renault_NC31_bot":          ${"def.standard"},
    "china-Ch07_Vickers_MkE_Type_BT26":     ${"def.standard"},
    "china-Ch08_Type97_Chi_Ha":             ${"def.standard"},
    "china-Ch09_M5":                        ${"def.standard"},
    "china-Ch10_IS2":                       ${"def.standard"},
    "china-Ch11_110":                       ${"def.standard"},
    "china-Ch11_110_IGR":                   ${"def.standard"},
    "china-Ch12_111_1_2_3":                 ${"def.standard"},
    "china-Ch14_T34_3":                     ${"def.premium"},
    "china-Ch15_59_16":                     ${"def.standard"},
    "china-Ch16_WZ_131":                    ${"def.standard"},
    "china-Ch17_WZ131_1_WZ132":             ${"def.standard"},
    "china-Ch17_WZ131_1_WZ132_IGR":         ${"def.standard"},
    "china-Ch18_WZ-120":                    ${"def.standard"},
    "china-Ch19_121":                       ${"def.standard"},
    "china-Ch19_121_IGR":                   ${"def.standard"},
    "china-Ch20_Type58":                    ${"def.standard"},
    "china-Ch21_T34":                       ${"def.standard"},
    "china-Ch22_113":                       ${"def.standard"},
    "china-Ch23_112":                       ${"def.premium"},
    "china-Ch24_Type64":                    ${"def.premium"},
    "china-Ch25_121_mod_1971B":             ${"def.special"},
    "china-Ch26_59_Patton":                 ${"def.premium"},
    "czech-Cz01_Skoda_T40":                 ${"def.premium"},
    "czech-Cz02_TVP_T50":                   ${"def.standard"},
    "czech-Cz03_LT_vz35":                   ${"def.standard"},
    "czech-Cz04_T50_51":                    ${"def.standard"},
    "czech-Cz05_T34_100":                   ${"def.standard"},
    "czech-Cz06_Kolohousenka":              ${"def.standard"},
    "czech-Cz07_TVP_46":                    ${"def.standard"},
    "czech-Cz08_T_25":                      ${"def.standard"},
    "czech-Cz09_T_24":                      ${"def.standard"},
    "czech-Cz10_LT_vz38":                   ${"def.standard"},
    "czech-Cz11_V_8_H":                     ${"def.standard"},
    "france-AMX_105AM":                     ${"def.standard"},
    "france-AMX_13_75":                     ${"def.standard"},
    "france-AMX_13F3AM":                    ${"def.standard"},
    "france-AMX_Ob_Am105":                  ${"def.standard"},
    "france-AMX38":                         ${"def.standard"},
    "france-AMX40":                         ${"def.standard"},
    "france-AMX50_Foch":                    ${"def.standard"},
    "france-ARL_V39":                       ${"def.standard"},
    "france-B1":                            ${"def.standard"},
    "france-Bat_Chatillon155_55":           ${"def.standard"},
    "france-Bat_Chatillon155_58":           ${"def.standard"},
    "france-Bat_Chatillon25t":              ${"def.standard"},
    "france-Bat_Chatillon25t_IGR":          ${"def.standard"},
    "france-BDR_G1B":                       ${"def.standard"},
    "france-D1":                            ${"def.standard"},
    "france-D2":                            ${"def.standard"},
    "france-ELC_AMX":                       ${"def.standard"},
    "france-ELC_AMX_IGR":                   ${"def.standard"},
    "france-F06_ARL_44":                    ${"def.standard"},
    "france-F07_AMX_M4_1945":               ${"def.standard"},
    "france-F08_AMX_50_100":                ${"def.standard"},
    "france-F08_AMX_50_100_IGR":            ${"def.standard"},
    "france-F09_AMX_50_120":                ${"def.standard"},
    "france-F10_AMX_50B":                   ${"def.standard"},
    "france-F10_AMX_50B_fallout":           ${"def.standard"},
    "france-F11_Renault_G1R":               ${"def.standard"},
    "france-F15_AMX_12t":                   ${"def.standard"},
    "france-F17_AMX_13_90":                 ${"def.standard"},
    "france-F17_AMX_13_90_IGR":             ${"def.standard"},
    "france-F28_105_leFH18B2":              ${"def.premium"},
    "france-F28_105_leFH18B2_IGR":          ${"def.standard"},
    "france-F35_AMX_AC_Mle1946":            ${"def.standard"},
    "france-F36_AMX_AC_Mle1948":            ${"def.standard"},
    "france-F36_AMX_AC_Mle1948_IGR":        ${"def.standard"},
    "france-F44_Somua_S35":                 ${"def.standard"},
    "france-F49_RenaultR35":                ${"def.standard"},
    "france-F50_FCM36_20t":                 ${"def.standard"},
    "france-F64_AMX_50Fosh_155":            ${"def.standard"},
    "france-F65_FCM_50t":                   ${"def.premium"},
    "france-F68_AMX_Chasseur_de_char_46":   ${"def.premium"},
    "france-F69_AMX13_57_100":              ${"def.premium"},
    "france-F69_AMX13_57_100_GrandFinal":   ${"def.premium"},
    "france-F70_SARL42":                    ${"def.standard"},
    "france-F71_AMX_30_prototype":          ${"def.standard"},
    "france-F72_AMX_30":                    ${"def.standard"},
    "france-F73_M4A1_Revalorise":           ${"def.premium"},
    "france-F74_AMX_M4_1949":               ${"def.premium"},
    "france-F75_Char_de_25t":               ${"def.standard"},
    "france-FCM_36Pak40":                   ${"def.premium"},
    "france-Hotchkiss_H35":                 ${"def.standard"},
    "france-Lorraine155_50":                ${"def.standard"},
    "france-Lorraine155_51":                ${"def.standard"},
    "france-Lorraine39_L_AM":               ${"def.standard"},
    "france-Lorraine40t":                   ${"def.standard"},
    "france-RenaultBS":                     ${"def.standard"},
    "france-RenaultFT":                     ${"def.standard"},
    "france-RenaultFT_AC":                  ${"def.standard"},
    "france-RenaultFT_bot":                 ${"def.standard"},
    "france-RenaultUE57":                   ${"def.standard"},
    "france-S_35CA":                        ${"def.standard"},
    "france-S_35CA_IGR":                    ${"def.standard"},
    "france-Somua_Sau_40":                  ${"def.standard"},
    "germany-Auf_Panther":                  ${"def.standard"},
    "germany-B-1bis_captured":              ${"def.premium"},
    "germany-DickerMax":                    ${"def.premium"},
    "germany-DW_II":                        ${"def.standard"},
    "germany-E-100":                        ${"def.standard"},
    "germany-E-50":                         ${"def.standard"},
    "germany-E50_Ausf_M":                   ${"def.standard"},
    "germany-E-75":                         ${"def.standard"},
    "germany-Env_Artillery":                ${"def.standard"},
    "germany-Ferdinand":                    ${"def.standard"},
    "germany-Ferdinand_IGR":                ${"def.standard"},
    "germany-G_E":                          ${"def.standard"},
    "germany-G_Panther":                    ${"def.standard"},
    "germany-G02_Hummel":                   ${"def.standard"},
    "germany-G04_PzVI_Tiger_IA":            ${"def.premium"},
    "germany-G05_StuG_40_AusfG":            ${"def.standard"},
    "germany-G05_StuG_40_AusfG_IGR":        ${"def.standard"},
    "germany-G06_PzII":                     ${"def.standard"},
    "germany-G06_PzII_bot":                 ${"def.standard"},
    "germany-G07_Pz35t":                    ${"def.standard"},
    "germany-G08_Pz38t":                    ${"def.standard"},
    "germany-G100_Gtraktor_Krupp":          ${"def.premium"},
    "germany-G101_StuG_III":                ${"def.standard"},
    "germany-G103_RU_251":                  ${"def.standard"},
    "germany-G104_Stug_IV":                 ${"def.special"},
    "germany-G105_T-55_NVA_DDR":            ${"def.special"},
    "germany-G106_PzKpfwPanther_AusfF":     ${"def.premium"},
    "germany-G107_PzKpfwIII_AusfK":         ${"def.premium"},
    "germany-G108_PzKpfwII_AusfD":          ${"def.premium"},
    "germany-G109_Steyr_WT":                ${"def.premium"},
    "germany-G11_Bison_I":                  ${"def.standard"},
    "germany-G112_KanonenJagdPanzer":       ${"def.premium"},
    "germany-G113_SP_I_C":                  ${"def.standard"},
    "germany-G114_Skorpian":                ${"def.premium"},
    "germany-G115_Typ_205_4_Jun":           ${"def.standard"},
    "germany-G116_Turan_III_prot":          ${"def.premium"},
    "germany-G117_Toldi_III":               ${"def.premium"},
    "germany-G118_VK4503":                  ${"def.premium"},
    "germany-G119_Panzer58":                ${"def.premium"},
    "germany-G119_Pz58_Mutz":               ${"def.premium"},
    "germany-G120_M41_90":                  ${"def.premium"},
    "germany-G120_M41_90_GrandFinal":       ${"def.premium"},
    "germany-G121_Grille_15_L63":           ${"def.standard"},
    "germany-G13_VK3001H":                  ${"def.standard"},
    "germany-G15_VK3601H":                  ${"def.standard"},
    "germany-G16_PzVIB_Tiger_II":           ${"def.standard"},
    "germany-G16_PzVIB_Tiger_II_IGR":       ${"def.standard"},
    "germany-G16_PzVIB_Tiger_II_training":  ${"def.standard"},
    "germany-G17_JagdPzIV":                 ${"def.standard"},
    "germany-G19_Wespe":                    ${"def.standard"},
    "germany-G20_Marder_II":                ${"def.standard"},
    "germany-G21_PanzerJager_I":            ${"def.standard"},
    "germany-G22_Sturmpanzer_II":           ${"def.standard"},
    "germany-G23_Grille":                   ${"def.standard"},
    "germany-G25_PzII_Luchs":               ${"def.standard"},
    "germany-G26_VK1602":                   ${"def.standard"},
    "germany-G27_VK3001P":                  ${"def.standard"},
    // TODO:0.9.15
    "germany-G32_PzV_PzIV_CN":              ${"def.premium"},
    "germany-G32_PzV_PzIV_ausf_Alfa_CN":    ${"def.premium"},
    //
    "germany-G34_S35_captured":             ${"def.premium"},
    "germany-G36_PzII_J":                   ${"def.premium"},
    "germany-G39_Marder_III":               ${"def.standard"},
    "germany-G40_Nashorn":                  ${"def.standard"},
    "germany-G44_JagdTiger":                ${"def.standard"},
    "germany-G45_G_Tiger":                  ${"def.standard"},
    "germany-G46_T-25":                     ${"def.premium"},
    "germany-G48_E-25":                     ${"def.premium"},
    "germany-G48_E-25_IGR":                 ${"def.standard"},
    "germany-G52_Pz38_NA":                  ${"def.standard"},
    "germany-G58_VK4502P":                  ${"def.standard"},
    "germany-G65_JagdTiger_SdKfz_185":      ${"def.premium"},
    "germany-G65_JagdTiger_SdKfz_185_IGR":  ${"def.standard"},
    "germany-G71_JagdPantherII":            ${"def.standard"},
    "germany-G78_Panther_M10":              ${"def.premium"},
    "germany-G82_Pz_II_AusfG":              ${"def.standard"},
    "germany-G86_VK2001DB":                 ${"def.standard"},
    "germany-G89_Leopard1":                 ${"def.standard"},
    "germany-G91_Pro_Ag_A":                 ${"def.standard"},
    "germany-G92_VK7201":                   ${"def.special"},
    "germany-G93_GW_Mk_VIe":                ${"def.standard"},
    "germany-GW_Tiger_P":                   ${"def.standard"},
    "germany-H39_captured":                 ${"def.premium"},
    "germany-Hetzer":                       ${"def.standard"},
    "germany-Indien_Panzer":                ${"def.standard"},
    "germany-JagdPanther":                  ${"def.standard"},
    "germany-JagdPz_E100":                  ${"def.standard"},
    "germany-Lowe":                         ${"def.premium"},
    "germany-Ltraktor":                     ${"def.standard"},
    "germany-Ltraktor_bot":                 ${"def.standard"},
    "germany-Maus":                         ${"def.standard"},
    "germany-Maus_IGR":                     ${"def.standard"},
    "germany-Panther_II":                   ${"def.standard"},
    "germany-Panther_II_IGR":               ${"def.standard"},
    "germany-Pz_IV_AusfA":                  ${"def.standard"},
    "germany-Pz_IV_AusfD":                  ${"def.standard"},
    "germany-Pz_IV_AusfH":                  ${"def.standard"},
    "germany-Pz_Sfl_IVb":                   ${"def.standard"},
    "germany-Pz_Sfl_IVc":                   ${"def.standard"},
    "germany-PzI":                          ${"def.standard"},
    "germany-PzI_ausf_C":                   ${"def.standard"},
    "germany-PzIII_A":                      ${"def.standard"},
    "germany-PzIII_AusfJ":                  ${"def.standard"},
    "germany-PzIII_IV":                     ${"def.standard"},
    "germany-PzIII_training":               ${"def.standard"},
    "germany-PzIV":                         ${"def.standard"},
    "germany-PzIV_Hydro":                   ${"def.premium"},
    "germany-PzIV_schmalturm":              ${"def.premium"},
    "germany-PzV":                          ${"def.standard"},
    "germany-PzV_IGR":                      ${"def.standard"},
    "germany-PzV_PzIV":                     ${"def.standard"},
    "germany-PzV_PzIV_ausf_Alfa":           ${"def.standard"},
    "germany-PzV_training":                 ${"def.standard"},
    "germany-PzVI":                         ${"def.standard"},
    "germany-PzVI_IGR":                     ${"def.standard"},
    "germany-PzVI_Tiger_P":                 ${"def.standard"},
    "germany-RhB_Waffentrager":             ${"def.standard"},
    "germany-Sturer_Emil":                  ${"def.standard"},
    "germany-T-15":                         ${"def.premium"},
    "germany-VK2801":                       ${"def.standard"},
    "germany-VK3002DB":                     ${"def.standard"},
    "germany-VK3002DB_V1":                  ${"def.standard"},
    "germany-VK3002M":                      ${"def.standard"},
    "germany-VK4502A":                      ${"def.standard"},
    "germany-VK4502P":                      ${"def.standard"},
    "germany-Waffentrager_E100":            ${"def.standard"},
    "germany-Waffentrager_IV":              ${"def.standard"},
    "japan-Chi_Ri":                         ${"def.standard"},
    "japan-Chi_Ri_IGR":                     ${"def.standard"},
    "japan-Chi_To":                         ${"def.standard"},
    "japan-J03_Ha_Go":                      ${"def.standard"},
    "japan-J04_Ke_Ni":                      ${"def.standard"},
    "japan-J06_Ke_Ho":                      ${"def.standard"},
    "japan-J07_Chi_Ha":                     ${"def.standard"},
    "japan-J08_Chi_Nu":                     ${"def.standard"},
    "japan-J09_Chi_He":                     ${"def.standard"},
    "japan-J12_Chi_Nu_Kai":                 ${"def.premium"},
    "japan-J15_Chi_Ni":                     ${"def.standard"},
    "japan-J18_STA_2_3":                    ${"def.premium"},
    "japan-J19_Tiger_I_Jpn":                ${"def.premium"},
    "japan-J20_Type_2605":                  ${"def.standard"},
    "japan-J21_Type_91":                    ${"def.standard"},
    "japan-J22_Type_95":                    ${"def.standard"},
    "japan-J23_Mi_To":                      ${"def.standard"},
    "japan-J24_Mi_To_130_tons":             ${"def.standard"},
    "japan-J25_Type_4":                     ${"def.standard"},
    "japan-J26_Type_89":                    ${"def.standard"},
    "japan-J27_O_I_120":                    ${"def.standard"},
    "japan-J28_O_I_100":                    ${"def.standard"},
    "japan-Ke_Ni_B":                        ${"def.standard"},
    "japan-NC27":                           ${"def.standard"},
    "japan-NC27_bot":                       ${"def.standard"},
    "japan-ST_B1":                          ${"def.standard"},
    "japan-ST_B1_IGR":                      ${"def.standard"},
    "japan-STA_1":                          ${"def.standard"},
    "japan-STA_1_IGR":                      ${"def.standard"},
    "japan-Te_Ke":                          ${"def.premium"},
    "japan-Type_61":                        ${"def.standard"},
    "uk-GB01_Medium_Mark_I":                ${"def.standard"},
    "uk-GB01_Medium_Mark_I_bot":            ${"def.standard"},
    "uk-GB03_Cruiser_Mk_I":                 ${"def.standard"},
    "uk-GB04_Valentine":                    ${"def.standard"},
    "uk-GB05_Vickers_Medium_Mk_II":         ${"def.standard"},
    "uk-GB05_Vickers_Medium_Mk_II_bot":     ${"def.standard"},
    "uk-GB06_Vickers_Medium_Mk_III":        ${"def.standard"},
    "uk-GB07_Matilda":                      ${"def.standard"},
    "uk-GB08_Churchill_I":                  ${"def.standard"},
    "uk-GB08_Churchill_I_IGR":              ${"def.standard"},
    "uk-GB09_Churchill_VII":                ${"def.standard"},
    "uk-GB10_Black_Prince":                 ${"def.standard"},
    "uk-GB11_Caernarvon":                   ${"def.standard"},
    "uk-GB11_Caernarvon_IGR":               ${"def.standard"},
    "uk-GB12_Conqueror":                    ${"def.standard"},
    "uk-GB13_FV215b":                       ${"def.standard"},
    "uk-GB13_FV215b_IGR":                   ${"def.standard"},
    "uk-GB14_M2":                           ${"def.standard"},
    "uk-GB15_Stuart_I":                     ${"def.standard"},
    "uk-GB17_Grant_I":                      ${"def.standard"},
    "uk-GB19_Sherman_Firefly":              ${"def.standard"},
    "uk-GB20_Crusader":                     ${"def.standard"},
    "uk-GB21_Cromwell":                     ${"def.standard"},
    "uk-GB21_Cromwell_IGR":                 ${"def.standard"},
    "uk-GB22_Comet":                        ${"def.standard"},
    "uk-GB23_Centurion":                    ${"def.standard"},
    "uk-GB23_Centurion_IGR":                ${"def.standard"},
    "uk-GB24_Centurion_Mk3":                ${"def.standard"},
    "uk-GB25_Loyd_Gun_Carriage":            ${"def.standard"},
    "uk-GB26_Birch_Gun":                    ${"def.standard"},
    "uk-GB27_Sexton":                       ${"def.standard"},
    "uk-GB28_Bishop":                       ${"def.standard"},
    "uk-GB29_Crusader_5inch":               ${"def.standard"},
    "uk-GB30_FV3805":                       ${"def.standard"},
    "uk-GB31_Conqueror_Gun":                ${"def.standard"},
    "uk-GB32_Tortoise":                     ${"def.standard"},
    "uk-GB33_Sentinel_AC_I":                ${"def.premium"},
    "uk-GB35_Sentinel_AC_IV":               ${"def.premium"},
    "uk-GB39_Universal_CarrierQF2":         ${"def.standard"},
    "uk-GB40_Gun_Carrier_Churchill":        ${"def.standard"},
    "uk-GB41_Challenger":                   ${"def.standard"},
    "uk-GB42_Valentine_AT":                 ${"def.standard"},
    "uk-GB44_Archer":                       ${"def.standard"},
    "uk-GB45_Achilles_IIC":                 ${"def.standard"},
    "uk-GB48_FV215b_183":                   ${"def.standard"},
    "uk-GB50_Sherman_III":                  ${"def.standard"},
    "uk-GB51_Excelsior":                    ${"def.premium"},
    "uk-GB52_A45":                          ${"def.premium"},
    "uk-GB57_Alecto":                       ${"def.standard"},
    "uk-GB58_Cruiser_Mk_III":               ${"def.standard"},
    "uk-GB59_Cruiser_Mk_IV":                ${"def.standard"},
    "uk-GB60_Covenanter":                   ${"def.standard"},
    "uk-GB63_TOG_II":                       ${"def.premium"},
    "uk-GB68_Matilda_Black_Prince":         ${"def.premium"},
    "uk-GB69_Cruiser_Mk_II":                ${"def.standard"},
    "uk-GB70_FV4202_105":                   ${"def.standard"},
    "uk-GB70_N_FV4202_105":                 ${"def.premium"},
    "uk-GB71_AT_15A":                       ${"def.premium"},
    "uk-GB72_AT15":                         ${"def.standard"},
    "uk-GB72_AT15_IGR":                     ${"def.standard"},
    "uk-GB73_AT2":                          ${"def.standard"},
    "uk-GB74_AT8":                          ${"def.standard"},
    "uk-GB75_AT7":                          ${"def.standard"},
    "uk-GB76_Mk_VIC":                       ${"def.premium"},
    "uk-GB77_FV304":                        ${"def.standard"},
    "uk-GB77_FV304_IGR":                    ${"def.standard"},
    "uk-GB78_Sexton_I":                     ${"def.premium"},
    "uk-GB79_FV206":                        ${"def.standard"},
    "uk-GB80_Charioteer":                   ${"def.standard"},
    "uk-GB81_FV4004":                       ${"def.standard"},
    "uk-GB83_FV4005":                       ${"def.standard"},
    "uk-GB84_Chieftain_Mk6":                ${"def.standard"},
    "uk-GB85_Cromwell_Berlin":              ${"def.premium"},
    "uk-GB86_Centurion_Action_X":           ${"def.standard"},
    "uk-GB87_Chieftain_T95_turret":         ${"def.premium"},
    "usa-A01_T1_Cunningham":                ${"def.standard"},
    "usa-A01_T1_Cunningham_bot":            ${"def.standard"},
    "usa-A02_M2_lt":                        ${"def.standard"},
    "usa-A03_M3_Stuart":                    ${"def.standard"},
    "usa-A05_M4_Sherman":                   ${"def.standard"},
    "usa-A05_M4_Sherman_IGR":               ${"def.standard"},
    "usa-A07_T20":                          ${"def.standard"},
    "usa-A09_T1_hvy":                       ${"def.standard"},
    "usa-A101_M56":                         ${"def.premium"},
    "usa-A102_T28_concept":                 ${"def.special"},
    "usa-A103_T71E1":                       ${"def.standard"},
    "usa-A103_T71E1_IGR":                   ${"def.standard"},
    "usa-A104_M4A3E8A":                     ${"def.premium"},
    "usa-A106_M48A2_120":                   ${"def.special"},
    "usa-A107_T1_HMC":                      ${"def.standard"},
    "usa-A108_T18_HMC":                     ${"def.standard"},
    "usa-A109_T56_GMC":                     ${"def.standard"},
    "usa-A11_T29":                          ${"def.standard"},
    "usa-A11_T29_IGR":                      ${"def.standard"},
    "usa-A111_T25_Pilot":                   ${"def.premium"},
    "usa-A112_T71E2":                       ${"def.standard"},
    "usa-A12_T32":                          ${"def.standard"},
    "usa-A13_T34_hvy":                      ${"def.premium"},
    "usa-A13_T34_hvy_IGR":                  ${"def.standard"},
    "usa-A14_T30":                          ${"def.standard"},
    "usa-A16_M7_Priest":                    ${"def.standard"},
    "usa-A18_M41":                          ${"def.standard"},
    "usa-A23_M7_med":                       ${"def.standard"},
    "usa-A24_T2_med":                       ${"def.standard"},
    "usa-A24_T2_med_bot":                   ${"def.standard"},
    "usa-A25_M2_med":                       ${"def.standard"},
    "usa-A27_T82":                          ${"def.standard"},
    "usa-A29_T40":                          ${"def.standard"},
    "usa-A30_M10_Wolverine":                ${"def.standard"},
    "usa-A35_Pershing":                     ${"def.standard"},
    "usa-A35_Pershing_IGR":                 ${"def.standard"},
    "usa-A36_Sherman_Jumbo":                ${"def.standard"},
    "usa-A36_Sherman_Jumbo_IGR":            ${"def.standard"},
    "usa-A45_M6A2E1":                       ${"def.premium"},
    "usa-A46_T3":                           ${"def.standard"},
    "usa-A58_T67":                          ${"def.standard"},
    "usa-A58_T67_IGR":                      ${"def.standard"},
    "usa-A63_M46_Patton":                   ${"def.standard"},
    "usa-A63_M46_Patton_KR":                ${"def.premium"},
    "usa-A68_T28_Prototype":                ${"def.standard"},
    "usa-A69_T110E5":                       ${"def.standard"},
    "usa-A78_M4_Improved":                  ${"def.premium"},
    "usa-A80_T26_E4_SuperPershing":         ${"def.premium"},
    "usa-A83_T110E4":                       ${"def.standard"},
    "usa-A84_M48A1":                        ${"def.standard"},
    "usa-A84_M48A1_IGR":                    ${"def.standard"},
    "usa-A85_T110E3":                       ${"def.standard"},
    "usa-A86_T23E3":                        ${"def.special"},
    "usa-A87_M44":                          ${"def.standard"},
    "usa-A88_M53_55":                       ${"def.standard"},
    "usa-A89_T54E1":                        ${"def.standard"},
    "usa-A92_M60":                          ${"def.special"},
    "usa-A94_T37":                          ${"def.standard"},
    "usa-A95_T95_E6":                       ${"def.special"},
    "usa-M103":                             ${"def.standard"},
    "usa-M12":                              ${"def.standard"},
    "usa-M18_Hellcat":                      ${"def.standard"},
    "usa-M22_Locust":                       ${"def.premium"},
    "usa-M24_Chaffee":                      ${"def.standard"},
    "usa-M3_Grant":                         ${"def.standard"},
    "usa-M36_Slagger":                      ${"def.standard"},
    "usa-M37":                              ${"def.standard"},
    "usa-M40M43":                           ${"def.standard"},
    "usa-M41_Bulldog":                      ${"def.standard"},
    "usa-M4A2E4":                           ${"def.premium"},
    "usa-M4A3E8_Sherman":                   ${"def.standard"},
    "usa-M4A3E8_Sherman_training":          ${"def.standard"},
    "usa-M5_Stuart":                        ${"def.standard"},
    "usa-M6":                               ${"def.standard"},
    "usa-M8A1":                             ${"def.standard"},
    "usa-MTLS-1G14":                        ${"def.premium"},
    "usa-Ram-II":                           ${"def.premium"},
    "usa-T1_E6":                            ${"def.premium"},
    "usa-T14":                              ${"def.premium"},
    "usa-T18":                              ${"def.standard"},
    "usa-T2_lt":                            ${"def.premium"},
    "usa-T21":                              ${"def.standard"},
    "usa-T23":                              ${"def.standard"},
    "usa-T25_2":                            ${"def.standard"},
    "usa-T25_AT":                           ${"def.standard"},
    "usa-T28":                              ${"def.standard"},
    "usa-T49":                              ${"def.standard"},
    "usa-T57":                              ${"def.standard"},
    "usa-T57_58":                           ${"def.standard"},
    "usa-T69":                              ${"def.standard"},
    "usa-T69_IGR":                          ${"def.standard"},
    "usa-T7_Combat_Car":                    ${"def.premium"},
    "usa-T92":                              ${"def.standard"},
    "usa-T95":                              ${"def.standard"},
    "usa-T95_E2":                           ${"def.special"},
    "ussr-A-32":                            ${"def.premium"},
    "ussr-A43":                             ${"def.standard"},
    "ussr-A44":                             ${"def.standard"},
    "ussr-AT-1":                            ${"def.standard"},
    "ussr-BT-2":                            ${"def.standard"},
    "ussr-BT-SV":                           ${"def.premium"},
    "ussr-Churchill_LL":                    ${"def.premium"},
    "ussr-IS-7":                            ${"def.standard"},
    "ussr-IS-7_fallout":                    ${"def.standard"},
    "ussr-IS-7_IGR":                        ${"def.standard"},
    "ussr-ISU-152":                         ${"def.standard"},
    "ussr-ISU-152_IGR":                     ${"def.standard"},
    "ussr-KV":                              ${"def.standard"},
    "ussr-KV-13":                           ${"def.standard"},
    "ussr-KV-1s":                           ${"def.standard"},
    "ussr-KV2":                             ${"def.standard"},
    "ussr-KV2_IGR":                         ${"def.standard"},
    "ussr-KV4":                             ${"def.standard"},
    "ussr-M3_Stuart_LL":                    ${"def.premium"},
    "ussr-Matilda_II_LL":                   ${"def.premium"},
    "ussr-MT25":                            ${"def.standard"},
    "ussr-Object_140":                      ${"def.standard"},
    "ussr-Object_261":                      ${"def.standard"},
    "ussr-Object_907":                      ${"def.special"},
    "ussr-Object_907A":                     ${"def.standard"},
    "ussr-Object263":                       ${"def.standard"},
    "ussr-Object268":                       ${"def.standard"},
    "ussr-Object416":                       ${"def.standard"},
    "ussr-Observer":                        ${"def.standard"},
    "ussr-R01_IS":                          ${"def.standard"},
    "ussr-R02_SU-85":                       ${"def.standard"},
    "ussr-R03_BT-7":                        ${"def.standard"},
    "ussr-R04_T-34":                        ${"def.standard"},
    "ussr-R06_T-28":                        ${"def.standard"},
    "ussr-R07_T-34-85":                     ${"def.standard"},
    "ussr-R07_T-34-85_training":            ${"def.standard"},
    "ussr-R100_SU122A":                     ${"def.standard"},
    "ussr-R104_Object_430_II":              ${"def.standard"},
    "ussr-R105_BT_7A":                      ${"def.premium"},
    "ussr-R106_KV85":                       ${"def.standard"},
    "ussr-R106_KV85_IGR":                   ${"def.standard"},
    "ussr-R107_LTB":                        ${"def.standard"},
    "ussr-R108_T34_85M":                    ${"def.premium"},
    "ussr-R109_T54S":                       ${"def.standard"},
    "ussr-R11_MS-1":                        ${"def.standard"},
    "ussr-R11_MS-1_bot":                    ${"def.standard"},
    "ussr-R110_Object_260":                 ${"def.special"},
    "ussr-R111_ISU130":                     ${"def.premium"},
    "ussr-R112_T54_45":                     ${"def.premium"},
    "ussr-R113_Object_730":                 ${"def.premium"},
    "ussr-R114_Object_244":                 ${"def.premium"},
    "ussr-R115_IS-3_auto":                  ${"def.premium"},
    "ussr-R116_ISU122C_Berlin":             ${"def.premium"},
    "ussr-R117_T34_85_Rudy":                ${"def.premium"},
    "ussr-R118_T28_F30":                    ${"def.premium"},
    "ussr-R119_Object_777":                 ${"def.special"},
    "ussr-R12_A-20":                        ${"def.standard"},
    "ussr-R120_T22SR_A22":                  ${"def.special"},
    "ussr-R121_KV4_KTT":                    ${"def.premium"},
    "ussr-R122_T44_100":                    ${"def.premium"},
    "ussr-R123_Kirovets_1":                 ${"def.premium"},
    "ussr-R125_T_45":                       ${"def.standard"},
    "ussr-R126_Object_730_5":               ${"def.standard"},
    "ussr-R127_T44_100_P":                  ${"def.premium"},
    "ussr-R128_KV4_Kreslavskiy":            ${"def.standard"},
    "ussr-R16_SU-18":                       ${"def.standard"},
    "ussr-R17_SU-100":                      ${"def.standard"},
    "ussr-R18_SU-152":                      ${"def.standard"},
    "ussr-R18_SU-152_IGR":                  ${"def.standard"},
    "ussr-R19_IS-3":                        ${"def.standard"},
    "ussr-R19_IS-3_IGR":                    ${"def.standard"},
    "ussr-R22_T-46":                        ${"def.standard"},
    "ussr-R23_T-43":                        ${"def.standard"},
    "ussr-R24_SU-76":                       ${"def.standard"},
    "ussr-R25_GAZ-74b":                     ${"def.standard"},
    "ussr-R38_KV-220":                      ${"def.premium"},
    "ussr-R38_KV-220_action":               ${"def.premium"},
    "ussr-R39_KV-3":                        ${"def.standard"},
    "ussr-R44_T80":                         ${"def.standard"},    
    "ussr-R51_Object_212":                  ${"def.standard"},
    "ussr-R53_Object_704":                  ${"def.standard"},
    "ussr-R54_KV-5":                        ${"def.premium"},
    "ussr-R54_KV-5_IGR":                    ${"def.standard"},
    "ussr-R56_T-127":                       ${"def.premium"},
    "ussr-R61_Object252":                   ${"def.premium"},
    "ussr-R71_IS_2B":                       ${"def.premium"},
    "ussr-R75_SU122_54":                    ${"def.standard"},
    "ussr-R80_KV1":                         ${"def.standard"},
    "ussr-R81_IS8":                         ${"def.standard"},
    "ussr-R86_LTP":                         ${"def.premium"},
    "ussr-R87_T62A":                        ${"def.standard"},
    "ussr-R87_T62A_fallout":                ${"def.standard"},
    "ussr-R90_IS_4M":                       ${"def.standard"},
    "ussr-R96_Object_430":                  ${"def.standard"},
    "ussr-S-51":                            ${"def.standard"},
    "ussr-ST_I":                            ${"def.standard"},
    "ussr-SU_85I":                          ${"def.premium"},
    "ussr-SU100M1":                         ${"def.standard"},
    "ussr-SU100Y":                          ${"def.premium"},
    "ussr-SU-101":                          ${"def.standard"},
    "ussr-SU122_44":                        ${"def.premium"},
    "ussr-SU-14":                           ${"def.standard"},
    "ussr-SU14_1":                          ${"def.standard"},
    "ussr-SU-26":                           ${"def.standard"},
    "ussr-SU-5":                            ${"def.standard"},
    "ussr-SU76I":                           ${"def.premium"},
    "ussr-SU-8":                            ${"def.standard"},
    "ussr-T_50_2":                          ${"def.standard"},
    "ussr-T150":                            ${"def.standard"},
    "ussr-T-26":                            ${"def.standard"},
    "ussr-T-26_bot":                        ${"def.standard"},
    "ussr-T-44":                            ${"def.standard"},
    "ussr-T44_122":                         ${"def.standard"},
    "ussr-T44_85":                          ${"def.standard"},
    "ussr-T-44_IGR":                        ${"def.standard"},
    "ussr-T-50":                            ${"def.standard"},
    "ussr-T-54":                            ${"def.standard"},
    "ussr-T-60":                            ${"def.standard"},
    "ussr-T-70":                            ${"def.standard"},
    "ussr-Tetrarch_LL":                     ${"def.premium"},
    "ussr-Valentine_LL":                    ${"def.premium"},
    "ussr-Valentine_LL_IGR":                ${"def.standard"}
	}
} 

Added to @xvm.xc

  // VehicleTypeLabels
  "vehicleTypeLabels": ${"vehicleTypeLabels.xc":"vehicleTypeLabels"},

Added to colors.xc

  "colors": {
            // System colors.
	    "VTL": ${"vehicleTypeLabels.xc":"vehicleTypeLabels"},
            [...]

End of story -> macro which I used in playersPanel.xc

{{.colors.VTL.{{vehiclename}}}}


  Edited by Dumadidak
  • Upvote 2

Share this post


Link to post

Short link
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...