Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 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 = "ExAdClient\Core\Img\ExAd_logo_128.paa"; //STRING - Path to logo
  33. ExAd_SB_COMPONENTS_COLORS = ["#000000", "#440B00","#FE1106","#CA7400","#A9C700","#11BF03"]; //STRINGS - Array of color codes, from bad to good.
  34.  
  35. _aOn = [0,3,6,9,12,15,18,21,24]; // Military Time
  36. startHour = ExileServerStartTime select 3;
  37. startMinute = ExileServerStartTime select 4;
  38. startSecond = ExileServerStartTime select 5;
  39. correcto = [];
  40. {
  41. if(startHour < _x and startHour != 24) then
  42. {
  43. correcto pushBack _x;
  44. };
  45. } forEach _aOn;
  46. ExAd_SB_Timer = 0; //SCALAR - Restart time measured in hours.
  47.  
  48. ExAd_SB_GUI_POS_Default = [safeZoneX, safeZoneY + safeZoneH - 32 * pixelH, safeZoneW, 30 * pixelH]; //ARRAY - Position with this attributes [x,y,w,h];
  49. ExAd_SB_GUI_TextColor_Default = [1,1,1,1]; //ARRAY - rgba array with values between 0-1, 0 => 0 | 255 => 1
  50. ExAd_SB_GUI_BgColor_Default = [0,0,0,0]; //ARRAY - rgba array with values between 0-1, 0 => 0 | 255 => 1
  51.  
  52. ExAd_SB_Text_Margin_Default = " "; //STRING - Margin between components measured in blankspaces
  53. ExAd_SB_Text_InnerMargin_Default = ""; //STRING - Margin between icon and text within the component measured in blankspaces
  54. ExAd_SB_Text_Font_Default = "OrbitronLight"; //STRING - Font family
  55. ExAd_SB_Text_Align_Default = "center"; //STRING - Alignment (left,center,right)
  56. ExAd_SB_Text_Size_Default = 1; //SCALAR - Text size ( 0-2 )
  57. ExAd_SB_Img_Size_Default = 1; //SCALAR - Icon size ( 0-2 )
  58.  
  59. ExAd_SB_Show_KD_Default = false; //BOOLEAN - Template, show kill death ratio
  60. ExAd_SB_Show_HP_Default = true; //BOOLEAN - Template, show health
  61. ExAd_SB_Show_Thirst_Default = false; //BOOLEAN - Template, show thirst
  62. ExAd_SB_Show_Hunger_Default = false; //BOOLEAN - Template, show hunger
  63. ExAd_SB_Show_Wallet_Default = true; //BOOLEAN - Template, show pop tabs on player
  64. ExAd_SB_Show_Bank_Default = false; //BOOLEAN - Template, show pop tabs in locker
  65. ExAd_SB_Show_Respect_Default = false; //BOOLEAN - Template, show respect
  66. ExAd_SB_Show_FPS_Default = true; //BOOLEAN - Template, show fps
  67. ExAd_SB_Show_Time_Default = true; //BOOLEAN - Template, show restart timer
  68. ExAd_SB_Show_Temp_Default = true; //BOOLEAN - Template, show body temperature
  69. ExAd_SB_Show_Grid_Default = true; //BOOLEAN - Template, show grid location
  70. ExAd_SB_Show_Compass_Default = true; //BOOLEAN - Template, show compass
  71. ExAd_SB_Show_PlayerCount_Default = true; //BOOLEAN - Template, show online players count
  72. ExAd_SB_Show_ClanCount_Default = false; //BOOLEAN - Template, show online family members count
  73.  
  74.  
  75. ExAd_SB_Allow_KD = true; //BOOLEAN - Allow showing kill death ratio
  76. ExAd_SB_Allow_HP = true; //BOOLEAN - Allow showing health
  77. ExAd_SB_Allow_Thirst = true; //BOOLEAN - Allow showing thirst
  78. ExAd_SB_Allow_Hunger = true; //BOOLEAN - Allow showing hunger
  79. ExAd_SB_Allow_Wallet = true; //BOOLEAN - Allow showing wallet
  80. ExAd_SB_Allow_Bank = true; //BOOLEAN - Allow showing bank saldo
  81. ExAd_SB_Allow_Respect = true; //BOOLEAN - Allow showing respect
  82. ExAd_SB_Allow_FPS = true; //BOOLEAN - Allow showing fps
  83. ExAd_SB_Allow_Time = true; //BOOLEAN - Allow showing restart timer
  84. ExAd_SB_Allow_Temp = true; //BOOLEAN - Allow showing body temperature
  85. ExAd_SB_Allow_Grid = true; //BOOLEAN - Allow showing grid location
  86. ExAd_SB_Allow_Compass = true; //BOOLEAN - Allow showing compass
  87. ExAd_SB_Allow_PlayerCount = true; //BOOLEAN - Allow showing players count
  88. ExAd_SB_Allow_ClanCount = false; //BOOLEAN - Allow showing online family members count
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement