
https://code.google.com/p/wot-xvm/downloads/detail?name=xvm-3.5.0-test3.zip&can=2&q=
xvm-3.5.0-test3 을 기반으로 작업하였습니다.
노란색 부분이 수정된 부분입니다.
소스 수정방법
₩res_mods₩0.8.4₩gui₩flash 내에 XVM.xvmconf 를 넣고 파랑색으로 적힌 부분 수정
1. 플랫폼 최고크기(닉,티어,차종 다 표기되는 상태) 일때 옆에 중전, 중형, 경차, 구축, 자주 표기되게 하였습니다.
(중전,중형,자주,구축 표기 색상은 고기와감자님이 사용하셨던 색상을 이용하였습니다.)
(문제 되면 해당 부분 제외하겠습니다.)
// Display format for player nickname (macros allowed, see readme-en.txt)
"nickFormatLeft": "<font color='{{c:vtype}}'>{{vtype}}</font> <font color='{{c:rating}}'>{{rating}}</font> {{nick}}",
"nickFormatRight": "{{nick}} <font color='{{c:rating}}'>{{rating}}</font> <font color='{{c:vtype}}'>{{vtype}}</font>"
// Text substitutions
"texts": {
// Text for {{vtype}} macro
"vtype": {
"LT": "경차", // Text for light tanks
"MT": "중형", // Text for medium tanks
"HT": "중전", // Text for heavy tanks
"SPG": "자주", // Text for arty
"TD": "구축" // Text for tank destroyers
//색상
"colors": {
"vtype": {
"HT": "0x996633",
"SPG": "0x0099FF",
"TD": "0xFF6600",
"premium": "0x9932cc",
"LT": "0xCCCCCC",
"usePremiumColor": true,
"MT": "0xFFFF00"
}
},
2. 맵에서 hp게이지 밑에 차량 티어 표기
"levelIcon": { // Vehicle tier
"visible": true, // false - Disable
3. 미니맵에 차량 티어표기
"format": { // Формат поля.
"ally": "<span class='mm_a'><b><i>{{level}}</b></i> {{vehicle}}</span>", // Ally
"enemy": "<span class='mm_e'><b><i>{{level}}</b></i> {{vehicle}}</span>", // Enemy
"squad": "<textformat leading='-1'><span class='mm_s'><b><i>{{level}}</b></i> <i>{{short-nick}}</i>n{{vehicle}}</span><textformat>", // Squadmates
// Lost enemy units
"lost": "<span class='mm_dot'>u2022</span><span class='mm_l'><b><i>{{level}}</b></i> <i>{{vehicle}}</i></span>",
// For your own marker or spectated subject.
"oneself": ""
},