Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.48 KB | None | 0 0
  1. /*
  2. customize.sqf
  3.  
  4. Copyright 2016 Jan Babor
  5.  
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9.  
  10. http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12. Unless required by applicable law or agreed to in writing, software
  13. distributed under the License is distributed on an "AS IS" BASIS,
  14. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. See the License for the specific language governing permissions and
  16. limitations under the License.
  17. */
  18. private["_aon"];
  19. ExAd_SB_ICON_BANK = "ExAdClient\StatsBar\Icons\ExAd_Bank.paa"; //STRING - Path to bank icon
  20. ExAd_SB_ICON_CLAN = "ExAdClient\StatsBar\Icons\ExAd_Family.paa"; //STRING - Path to family icon
  21. ExAd_SB_ICON_COMPASS = "ExAdClient\StatsBar\Icons\ExAd_Compass.paa"; //STRING - Path to compass icon
  22. ExAd_SB_ICON_GRID = "ExAdClient\StatsBar\Icons\ExAd_Grid.paa"; //STRING - Path to grid icon
  23. ExAd_SB_ICON_HP = "ExAdClient\StatsBar\Icons\ExAd_Health.paa"; //STRING - Path to health icon
  24. ExAd_SB_ICON_HUNGER = "ExAdClient\StatsBar\Icons\ExAd_Hunger.paa"; //STRING - Path to hunger icon
  25. ExAd_SB_ICON_KD = "ExAdClient\StatsBar\Icons\ExAd_KD.paa"; //STRING - Path to kill death ratio icon
  26. ExAd_SB_ICON_PLAYERS = "ExAdClient\StatsBar\Icons\ExAd_Players.paa"; //STRING - Path to players icon
  27. ExAd_SB_ICON_RESPECT = "ExAdClient\StatsBar\Icons\ExAd_Respect.paa"; //STRING - Path to respect icon
  28. ExAd_SB_ICON_TEMP = "ExAdClient\StatsBar\Icons\ExAd_Temp.paa"; //STRING - Path to temperature icon
  29. ExAd_SB_ICON_THIRST = "ExAdClient\StatsBar\Icons\ExAd_Thirst.paa"; //STRING - Path to thirst icon
  30. ExAd_SB_ICON_TIMER = "ExAdClient\StatsBar\Icons\ExAd_Restart.paa"; //STRING - Path to restart icon
  31. ExAd_SB_ICON_Wallet = "ExAdClient\StatsBar\Icons\ExAd_Wallet.paa"; //STRING - Path to POP TABS icon
  32. ExAd_SB_ICON_LOGO = ""; //STRING - Path to logo
  33.  
  34. ExAd_SB_COMPONENTS_COLORS = ["#000000", "#440B00","#FE1106","#CA7400","#A9C700","#11BF03"]; //STRINGS - Array of color codes, from bad to good.
  35.  
  36. _aOn = [0,3,6,9,12,15,18,21,24]; //[0,4,8,12,16,20,24]; // Military Time
  37. startHour = ExileServerStartTime select 3;
  38. startMinute = ExileServerStartTime select 4;
  39. startSecond = ExileServerStartTime select 5;
  40. correcto = [];
  41. {
  42. if(startHour < _x and startHour != 24) then
  43. {
  44. correcto pushBack _x;
  45. };
  46. } forEach _aOn;
  47.  
  48. ExAd_SB_Timer = 0; //SCALAR - Restart time measured in hours.
  49.  
  50. ExAd_SB_GUI_POS_Default = [safeZoneX, safeZoneY + safeZoneH - 32 * pixelH, safeZoneW, 30 * pixelH]; //ARRAY - Position with this attributes [x,y,w,h];
  51. ExAd_SB_GUI_TextColor_Default = [1,1,1,1]; //ARRAY - rgba array with values between 0-1, 0 => 0 | 255 => 1
  52. ExAd_SB_GUI_BgColor_Default = [0,0,0,0.5]; //ARRAY - rgba array with values between 0-1, 0 => 0 | 255 => 1
  53.  
  54. ExAd_SB_Text_Margin_Default = " "; //STRING - Margin between components measured in blankspaces
  55. ExAd_SB_Text_InnerMargin_Default = ""; //STRING - Margin between icon and text within the component measured in blankspaces
  56. ExAd_SB_Text_Font_Default = "RobotoCondensedLight"; //STRING - Font family
  57. ExAd_SB_Text_Align_Default = "center"; //STRING - Alignment (left,center,right)
  58. ExAd_SB_Text_Size_Default = 1; //SCALAR - Text size ( 0-2 )
  59. ExAd_SB_Img_Size_Default = 1; //SCALAR - Icon size ( 0-2 )
  60.  
  61. ExAd_SB_Show_KD_Default = false; //BOOLEAN - Template, show kill death ratio
  62. ExAd_SB_Show_HP_Default = true; //BOOLEAN - Template, show health
  63. ExAd_SB_Show_Thirst_Default = true; //BOOLEAN - Template, show thirst
  64. ExAd_SB_Show_Hunger_Default = true; //BOOLEAN - Template, show hunger
  65. ExAd_SB_Show_Wallet_Default = true; //BOOLEAN - Template, show pop tabs on player
  66. ExAd_SB_Show_Bank_Default = true; //BOOLEAN - Template, show pop tabs in locker
  67. ExAd_SB_Show_Respect_Default = true; //BOOLEAN - Template, show respect
  68. ExAd_SB_Show_FPS_Default = true; //BOOLEAN - Template, show fps
  69. ExAd_SB_Show_Time_Default = true; //BOOLEAN - Template, show restart timer
  70. ExAd_SB_Show_Temp_Default = false; //BOOLEAN - Template, show body temperature
  71. ExAd_SB_Show_Grid_Default = false; //BOOLEAN - Template, show grid location
  72. ExAd_SB_Show_Compass_Default = true; //BOOLEAN - Template, show compass
  73. ExAd_SB_Show_PlayerCount_Default = true; //BOOLEAN - Template, show online players count
  74. ExAd_SB_Show_ClanCount_Default = false; //BOOLEAN - Template, show online family members count
  75.  
  76.  
  77. ExAd_SB_Allow_KD = true; //BOOLEAN - Allow showing kill death ratio
  78. ExAd_SB_Allow_HP = true; //BOOLEAN - Allow showing health
  79. ExAd_SB_Allow_Thirst = true; //BOOLEAN - Allow showing thirst
  80. ExAd_SB_Allow_Hunger = true; //BOOLEAN - Allow showing hunger
  81. ExAd_SB_Allow_Wallet = true; //BOOLEAN - Allow showing wallet
  82. ExAd_SB_Allow_Bank = true; //BOOLEAN - Allow showing bank saldo
  83. ExAd_SB_Allow_Respect = true; //BOOLEAN - Allow showing respect
  84. ExAd_SB_Allow_FPS = true; //BOOLEAN - Allow showing fps
  85. ExAd_SB_Allow_Time = true; //BOOLEAN - Allow showing restart timer
  86. ExAd_SB_Allow_Temp = false; //BOOLEAN - Allow showing body temperature
  87. ExAd_SB_Allow_Grid = false; //BOOLEAN - Allow showing grid location
  88. ExAd_SB_Allow_Compass = true; //BOOLEAN - Allow showing compass
  89. ExAd_SB_Allow_PlayerCount = true; //BOOLEAN - Allow showing players count
  90. ExAd_SB_Allow_ClanCount = false; //BOOLEAN - Allow showing online family members count
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement