-
Notifications
You must be signed in to change notification settings - Fork 0
/
markers.xc
executable file
·45 lines (45 loc) · 1.87 KB
/
markers.xc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* Over-target markers. All settings moved to separate files.
* Маркеры над танками. Все настройки вынесены в отдельные файлы.
*/
{
"markers": {
// false - use standard client vehicle markers.
// false - использовать стандартные маркеры клиента.
"enabled": true,
// {{turret}} marker display strings.
// Отображаемые строки {{turret}} маркера.
"turretMarkers": {
// Subject has stock turret and top gun can not be mounted. Subject is highly vulnerable.
// Субъект имеет стоковую башню и топ орудие не может быть установлено. Субъект сильно уязвим.
"highVulnerability": "*",
// Subject has stock turret and top gun can be mounted. Subject is somewhat vulnerable.
// Субъект имеет стоковую башню и топ орудие может быть установлено. Субъект немного уязвим.
"lowVulnerability": "'"
},
// Settings for allies.
// Настройки для союзников.
"ally": {
"alive": {
"normal": ${"markersAliveNormal.xc":"ally"},
"extended": ${"markersAliveExtended.xc":"ally"}
},
"dead": {
"normal": ${"markersDeadNormal.xc":"ally"},
"extended": ${"markersDeadExtended.xc":"ally"}
}
},
// Settings for enemies.
// Настройки для противников.
"enemy": {
"alive": {
"normal": ${"markersAliveNormal.xc":"enemy"},
"extended": ${"markersAliveExtended.xc":"enemy"}
},
"dead": {
"normal": ${"markersDeadNormal.xc":"enemy"},
"extended": ${"markersDeadExtended.xc":"enemy"}
}
}
}
}