Advertisement
Guest User

Untitled

a guest
Feb 25th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 3.69 KB | None | 0 0
  1. #include "ZSC\config\cfgServerTrader.hpp"
  2.  
  3. respawn = "BASE";
  4. respawndelay = 5;
  5. onLoadMission= "LeeP Gaming DayZ Epoch Napf";
  6. OnLoadIntro = "Welcome to LeeP Gaming DayZ Epoch Napf";
  7. OnLoadIntroTime = False;
  8. OnLoadMissionTime = False;
  9. disabledAI = true;
  10. disableChannels[]={0,2,6};
  11. enableItemsDropping = 0;
  12.  
  13. briefing = 0;
  14. debriefing = 0;
  15.  
  16. onPauseScript = "";
  17. loadScreen = "loadingscreen.jpg";
  18.  
  19. class Header
  20. {
  21. gameType = COOP;            //DM, Team, Coop, ...
  22. minPlayers = 1;             //min # of players the mission supports
  23. maxPlayers = 100;           //Max # of players the mission supports
  24. };
  25.  
  26. aiKills = 1;
  27. diagRadio = 1;
  28. diagHit = 1;
  29.  
  30. class RscText
  31. {
  32.     type = 0;
  33.     idc = -1;
  34.     x = 0;
  35.     y = 0;
  36.     h = 0.037;
  37.     w = 0.3;
  38.     style = 0x100;
  39.     font = Zeppelin32;
  40.     SizeEx = 0.03921;
  41.     colorText[] = {1,1,1,1};
  42.     colorBackground[] = {0, 0, 0, 0};
  43.     linespacing = 1;
  44. };
  45. class RscPicture
  46. {
  47.     access=0;
  48.     type=0;
  49.     idc=-1;
  50.     style=48;
  51.     colorBackground[]={0,0,0,0};
  52.     colorText[]={1,1,1,1};
  53.     font="TahomaB";
  54.     sizeEx=0;
  55.     lineSpacing=0;
  56.     text="";
  57. };
  58. class RscLoadingText : RscText
  59. {
  60.     style = 2;
  61.     x = 0.323532;
  62.     y = 0.666672;
  63.     w = 0.352944;
  64.     h = 0.039216;
  65.     sizeEx = 0.03921;
  66.     colorText[] = {0.543,0.5742,0.4102,1.0};
  67. };
  68. class RscProgress
  69. {
  70.     x = 0.344;
  71.     y = 0.619;
  72.     w = 0.313726;
  73.     h = 0.0261438;
  74.     texture = "\ca\ui\data\loadscreen_progressbar_ca.paa";
  75.     colorFrame[] = {0,0,0,0};
  76.     colorBar[] = {1,1,1,1};
  77. };
  78. class RscProgressNotFreeze
  79. {
  80.     idc = -1;
  81.     type = 45;
  82.     style = 0;
  83.     x = 0.022059;
  84.     y = 0.911772;
  85.     w = 0.029412;
  86.     h = 0.039216;
  87.     texture = "#(argb,8,8,3)color(0,0,0,0)";
  88. };
  89. //
  90. // the loading screen itself
  91. //
  92. class DayZ_loadingScreen
  93. {
  94.     idd = -1;
  95.     duration = 10e10;
  96.     fadein = 0;
  97.     fadeout = 0;
  98.     name = "loading screen";
  99.     class controlsBackground
  100.     {
  101.         class blackBG : RscText
  102.         {
  103.             x = safezoneX;
  104.             y = safezoneY;
  105.             w = safezoneW;
  106.             h = safezoneH;
  107.             text = "";
  108.             colorText[] = {0,0,0,0};
  109.             colorBackground[] = {0,0,0,1};
  110.         };
  111.         /*
  112.         class nicePic : RscPicture
  113.         {
  114.             style = 48 + 0x800; // ST_PICTURE + ST_KEEP_ASPECT_RATIO
  115.             x = safezoneX + safezoneW/2 - 0.25;
  116.             y = safezoneY + safezoneH/2 - 0.2;
  117.             w = 0.5;
  118.             h = 0.4;
  119.             text = "img\nicePic.paa";
  120.         };
  121.         */
  122.     };
  123.     class controls
  124.     {
  125.         class Title1 : RscLoadingText
  126.         {
  127.             text = "$STR_LOADING"; // "Loading" text in the middle of the screen
  128.         };
  129.         class CA_Progress : RscProgress // progress bar, has to have idc 104
  130.         {
  131.             idc = 104;
  132.             type = 8; // CT_PROGRESS
  133.             style = 0; // ST_SINGLE
  134.             texture = "\ca\ui\data\loadscreen_progressbar_ca.paa";
  135.         };
  136.         class CA_Progress2 : RscProgressNotFreeze // progress bar that will go reverse
  137.         {
  138.             idc = 103;
  139.         };
  140.         class Name2: RscText // the text on the top-left
  141.         {
  142.             idc = 101;
  143.             x = 0.05;
  144.             y = 0.029412;
  145.             w = 0.9;
  146.             h = 0.04902;
  147.             text = "";
  148.             sizeEx = 0.05;
  149.             colorText[] = {0.543,0.5742,0.4102,1.0};
  150.         };
  151.     };
  152. };
  153.  
  154. #include "dzgm\defines.hpp"
  155.  
  156. class RscTitles
  157. {
  158.     #include "ZSC\config\ZSChud.hpp"
  159.     #include "dzgm\icons.hpp"
  160. };
  161. #include "ZSC\config\ZSCdefines.hpp"
  162. #include "ZSC\config\ZSCdialogs.hpp"
  163.  
  164. // Snap pro
  165. #include "custom\snap_pro\snappoints.hpp"
  166.  
  167. // Extra right-click actions
  168. #include "custom\extra_rc.hpp"
  169. #include "scripts\help\hlp_defines.hpp"
  170. #include "scripts\help\hlp_dialog.hpp"
  171.  
  172. // Group Management
  173. #include "dzgm\groupManagement.hpp"
  174.  
  175. // ESS
  176. #include "spawn\class.hpp"
  177. #include "spawn\halo.hpp"
  178. #include "spawn\spawn.hpp"
  179.  
  180. // Advanced trading
  181. #include "zupa\advancedTrading\advancedTrading.hpp"
  182.  
  183. // Plot Management
  184. #include "plotManagement\defines.hpp"
  185. #include "plotManagement\plotManagement.hpp"
  186.  
  187. // Paint
  188. #include "Paint\defines.hpp"
  189. #include "Paint\vehiclecolour.hpp"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement