Advertisement
Guest User

Untitled

a guest
Mar 15th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. respawn = "BASE";
  2. respawnDelay = 0;
  3. respawnDialog = 0;
  4. onLoadMission = "DayZ Epoch Chernarus";
  5. OnLoadIntro = "Welcome to Chernarus";
  6. OnLoadIntroTime = 0;
  7. OnLoadMissionTime = 0;
  8. disabledAI = 1;
  9. disableChannels[] = {0,2,6};
  10. enableItemsDropping = 0;
  11. onPauseScript = "";
  12. briefing = 0;
  13. debriefing = 0;
  14.  
  15. titleParam1 = "AutoLogin:";
  16. valuesParam1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 31};
  17. defValueParam1 = 10; //auto login time limit in seconds, set value to 31 to disable auto login
  18. textsParam1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, "Disabled"};
  19.  
  20. loadScreen = "\z\addons\dayz_code\gui\loadingscreen.paa";
  21.  
  22. class Header
  23. {
  24. gameType = COOP; //DM, Team, Coop, ...
  25. minPlayers = 1; //min # of players the mission supports
  26. maxPlayers = 100; //Max # of players the mission supports
  27. };
  28.  
  29. aiKills = 1;
  30. diagRadio = 1;
  31. diagHit = 1;
  32.  
  33. class CfgSounds
  34. {
  35. sounds[] =
  36. {
  37. Radio_Message_Sound
  38. };
  39. class Radio_Message_Sound
  40. {
  41. name = "Radio_Message_Sound";
  42. sound[] = {scripts\radio\radio.ogg,0.4,1};
  43. titles[] = {};
  44. };
  45. };
  46.  
  47. class RscTitles {
  48. #include "dayz_code\configs\zschud.hpp"
  49. class wm_disp {
  50. idd = -1;
  51. onLoad = "uiNamespace setVariable ['wm_disp', _this select 0]";
  52. fadein = 0;
  53. fadeout = 0;
  54. duration = 10e10;
  55. controlsBackground[] = {};
  56. objects[] = {};
  57. class controls {
  58. class wm_text2 {
  59. idc = 1;
  60. x = safeZoneX+0.027;//safeZoneW*0.01;
  61. y = safeZoneY+safeZoneH-0.16;
  62. w = 0.151*safeZoneH;
  63. h = 0.057*safeZoneH;
  64. shadow = 2;
  65. class Attributes {
  66. font = "EtelkaNarrowMediumPro";
  67. color = "#24FFFFFF";
  68. align = "left"; // put "center" here if you want some background
  69. valign = "middle";
  70. shadow = 2;
  71. };
  72. colorBackground[] = { 1, 0.3, 0, 0 }; // uncomment and increase 4th number to have a background
  73. font = "EtelkaNarrowMediumPro";
  74. size = 0.06*safeZoneH;
  75. type = 13;
  76. style = 0;
  77. text = "";
  78. };
  79. };
  80. };
  81. };
  82.  
  83. #include "dayz_code\gui\description.hpp"
  84. #include "dayz_code\Configs\CfgServerTrader.hpp"
  85.  
  86. #include "dayz_code\configs\zscdefines.hpp"
  87. #include "dayz_code\configs\zscdialogs.hpp"
  88. #include "dayz_code\configs\zscATMdialogs.hpp"
  89.  
  90. #include "CfgLoot\CfgLoot.hpp"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement