Advertisement
Guest User

oldServerCrosshair.json

a guest
Sep 6th, 2015
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. /*
  2. Старый серверный прицел.
  3. Old server crosshair.
  4. */
  5. {
  6. // true - включить модуль.
  7. // true - enable the module.
  8. "enable" : true,
  9.  
  10. /* Ввиду громоздкого набора параметров текстур, описаны будут параметры только единожды. */
  11. /* Due to the cumbersome set of parameters texture parameters will be described only once. */
  12.  
  13. // Аркадный режим.
  14. // Arcade mode.
  15. "arcadeMode" : {
  16.  
  17. // Показывать серверный прицел.
  18. // Show server crosshair.
  19. "enableServerGunMarker" : true,
  20.  
  21. // Показывать обыкновенный прицел.
  22. // Show default flash crosshair.
  23. "enableFlashGunMarker" : true,
  24.  
  25. // Размер и расположение текстуры.
  26. // The size and location of the texture.
  27. "textureSettings" : {
  28. "width" : 64,
  29. "height" : 64,
  30. "path" : "scripts/client/mods/PMOD/ServerCross/gun_marker_blue.dds"
  31. },
  32.  
  33. // Масштаб прицела
  34. // Crosshair scale
  35. "crosshairScale" : 1,
  36.  
  37. // Эти параметры вам лучше не трогать, они относятся к расположению элементов внутри текстуры.
  38. // Люди которые делают свои текстуры, или используют какие-то не стандартные, знакомы с этими параметрами.
  39. // These parameters you better not touch it, they relate to the layout inside texture.
  40. // People who make their texture, or use any non-standard, familiar with these parameters.
  41. "crosshairElements" : {
  42. "top" : {"mapping": [13, 0, 26, 13], "size": [13, 13]},
  43. "right" : {"mapping": [26, 0, 39, 13], "size": [13, 13]},
  44. "bottom" : {"mapping": [39, 0, 52, 13], "size" : [13, 13]},
  45. "left" : {"mapping": [0, 0, 13, 13], "size" : [13, 13]},
  46. "center" : {"mapping": [0, 13, 21, 34], "size" : [21, 21]}
  47. }
  48. },
  49.  
  50. // Снайперский режим.
  51. // Sniper mode.
  52. "sniperMode" : {
  53. "enableServerGunMarker" : true,
  54. "enableFlashGunMarker" : true,
  55. "textureSettings" : {
  56. "width" : 64,
  57. "height" : 64,
  58. "path" : "scripts/client/mods/PMOD/ServerCross/gun_marker_blue.dds"
  59. },
  60. "crosshairScale" : 0.5,
  61. "crosshairElements" : {
  62. "top" : {"mapping": [13, 0, 26, 13], "size": [13, 13]},
  63. "right" : {"mapping": [26, 0, 39, 13], "size": [13, 13]},
  64. "bottom" : {"mapping": [39, 0, 52, 13], "size" : [13, 13]},
  65. "left" : {"mapping": [0, 0, 13, 13], "size" : [13, 13]},
  66. "center" : {"mapping": [0, 13, 21, 34], "size" : [21, 21]}
  67. }
  68. },
  69.  
  70. // Артилерийский режим.
  71. // Strategic mode.
  72. "strategicMode" : {
  73. "enableServerGunMarker" : true,
  74. "enableFlashGunMarker" : true,
  75.  
  76. // true - сведение текстурой, false - сведение flash (1 в 1 как основное только цвет другой).
  77. // true - texture gun marker, false - flash gun marker (1 to 1 as the main, only color other).
  78. "textureServerGunMarker" : true,
  79.  
  80. "textureSettings" : {
  81. "width" : 64,
  82. "height" : 64,
  83. "path" : "scripts/client/mods/PMOD/ServerCross/gun_marker_blue.dds"
  84. },
  85. "crosshairScale" : 0.5,
  86. "crosshairElements" : {
  87. "top" : {"mapping": [13, 0, 26, 13], "size": [13, 13]},
  88. "right" : {"mapping": [26, 0, 39, 13], "size": [13, 13]},
  89. "bottom" : {"mapping": [39, 0, 52, 13], "size" : [13, 13]},
  90. "left" : {"mapping": [0, 0, 13, 13], "size" : [13, 13]},
  91. "center" : {"mapping": [0, 13, 21, 34], "size" : [21, 21]}
  92. }
  93. }
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement