Advertisement
Guest User

PMOD battleGUI.playersHealth

a guest
Jan 26th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.98 KB | None | 0 0
  1. {
  2.   // Здоровье игроков
  3.   // Players Health
  4.   "playersHealth": {
  5.  
  6.         // true - включить функцию.
  7.         // true - enable function. 
  8.         "enable": true,
  9.  
  10.         // true - отображать по зажатию ALT
  11.         // true - display on ALT hold
  12.         "displayByALT": true,
  13.  
  14.         // true - не отображать у мёртвых игроков.
  15.         // true - dont display on dead players.
  16.         "hideDeadPlayers": true,
  17.  
  18.         // настройки для союзников.
  19.         // settings for allys.
  20.         "left": {
  21.  
  22.             // настройки надписи.
  23.             // label config.
  24.             "label": {
  25.  
  26.                 // true - отображать.
  27.                 // true - display. 
  28.                 "enable": false,
  29.  
  30.                 // Позиция на экране относительно иконки танка
  31.                 // Indicator position on the screen with a report from vehicle icon
  32.                 "position" : [100, 4],
  33.  
  34.                 // Размер поля с надписью
  35.                 // Size of label area
  36.                 "size" : [80, 20],
  37.                
  38.                 // Текст надписи
  39.                 // Field text
  40.                 "text": "<font face=\"$FieldFont\" size=\"12\" color=\"#FFFFFF\"><p align=\"center\">{{hp_current}}</p></font>"
  41.             },
  42.  
  43.             // настройки бара
  44.             // bar config
  45.             "healthBar": {
  46.  
  47.                 // true - отображать.
  48.                 // true - display. 
  49.                 "enable": false,
  50.  
  51.                 // Позиция на экране относительно иконки танка
  52.                 // Indicator position on the screen with a report from vehicle icon
  53.                 "position" : [100, 6],
  54.  
  55.                 // Размер индикатора
  56.                 // Field индикатора
  57.                 "size" : [80, 16]
  58.             }
  59.         },
  60.  
  61.         // настройки для противников
  62.         // settings for enemys
  63.         "right": {
  64.  
  65.             // настройки надписи
  66.             // label config
  67.             "label": {
  68.  
  69.                 // true - отображать.
  70.                 // true - display. 
  71.                 "enable": true,
  72.  
  73.                 // Позиция на экране относительно иконки танка
  74.                 // Position on the screen with a report from vehicle icon
  75.                 "position" : [-180, 6],
  76.  
  77.                 // Размер поля с надписью
  78.                 // Size of label area
  79.                 "size" : [80, 20],
  80.  
  81.                 // Текст надписи
  82.                 // Field text
  83.                 "text": "<font face=\"$FieldFont\" size=\"15\" color=\"#FFFFFF\"><p align=\"right\">{{hp_current}}</p></font>"
  84.             },
  85.  
  86.             // настройки бара
  87.             // bar config
  88.             "healthBar": {
  89.  
  90.                 // true - отображать.
  91.                 // true - display.
  92.                 "enable": false,
  93.  
  94.                 // Позиция на экране относительно иконки танка
  95.                 // Indicator position on the screen with a report from vehicle icon
  96.                 "position" : [-165, 6],
  97.  
  98.                 // Размер индикатора
  99.                 // Field индикатора
  100.                 "size" : [80, 16]
  101.             }
  102.         },
  103.  
  104.         // Настройки тени для текстов
  105.         // Shadow settings for labels
  106.         "shadow" : {
  107.  
  108.             // true - использовать тень.
  109.             // true - use shadows.
  110.             "enable": true,
  111.  
  112.             // Прозрачность тени. Oт 0 - прозрачный до 100 непрозрачный
  113.             // Transparency shadow. From 0 - transparent to 100 not transparent
  114.             "alpha" : 80,
  115.            
  116.             // Размытые тени. Oт 0 - не размыта до ? размыта
  117.             // Blurry shadows. From 0 - not blurred to ? blurred
  118.             "blur" : 2,
  119.            
  120.             // Цвет тени. Значение цвета в палитре RGB (красный, зелёный, синий)
  121.             // Color тени. Value colors in the RGB (red, green, blue)
  122.             "color" : "000000",
  123.            
  124.             // Сила тени. Oт 0 - слабая до ? сильная
  125.             // Strength shadows. From 0 - not strength to ? strength
  126.             "strength" : 2,
  127.            
  128.             // Дистанция отступа от основного текста
  129.             // Indentation distance from the main text
  130.             "distance" : 0,
  131.            
  132.             // Угол в котором движется тень
  133.             // The angle in which the motion of the shadow
  134.             "angle" : 0
  135.         }
  136.     }
  137. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement