Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. author="masterT00L";
  2. //OnLoadName = "";
  3. //OnLoadMission = "";
  4. //onLoadIntroTime = false;
  5. //onLoadMissionTime = false;
  6. overviewPicture = \a3\Missions_F_curator\data\img\mp_zgm_m11_overview_ca.paa;
  7. //loadScreen = "";
  8. disabledAI=1;
  9. disableChannels[]={0,1,2,3,4,6};
  10. enableDebugConsole = 1;
  11. corpseManagerMode = 0;
  12. debriefing=0;
  13. showGPS=1;
  14. respawn = 2;
  15. respawnDelay = 3;
  16. respawnVehicleDelay = 3;
  17. respawnTemplates[] = {"MenuPosition"};
  18. respawnTemplatesVirtual[] = {};
  19.  
  20. class Header
  21. {
  22. gameType = ZGM;
  23. minPlayers = 1;
  24. maxPlayers = 72;
  25. };
  26.  
  27. class Params
  28. {
  29. class CuratorGodMode
  30. {
  31. title = $STR_A3_MP_ZGM_m11.Altis_Params_CuratorUnlock;
  32. values[] = {0,1};
  33. texts[] = {$STR_DISABLED,$STR_ENABLED};
  34. default = 0;
  35. };
  36. class CuratorModeratorRights
  37. {
  38. title = $STR_A3_MP_ZGM_m11.Altis_Params_CuratorModeratorRights;
  39. values[] = {-1,0,1,2};
  40. texts[] = {
  41. "Cannot create and edit anything (spectating only)", //--- ToDo: Localize
  42. $STR_A3_MP_ZGM_m11.Altis_Params_CuratorModeratorRights_0,
  43. $STR_A3_MP_ZGM_m11.Altis_Params_CuratorModeratorRights_1,
  44. $STR_A3_MP_ZGM_m11.Altis_Params_CuratorModeratorRights_2
  45. };
  46. default = 1;
  47. };
  48. #ifdef _PARAMTYPE
  49. class Type
  50. {
  51. title = $STR_DISP_ARCGRP_TYPE;
  52. values[] = {0,1};
  53. texts[] = {$STR_A3_CfgMPGameTypes_Coop_name_0,$STR_A3_CfgMPGameTypes_DM_name_0};
  54. default = 0;
  55. isGlobal = 1;
  56. file = "paramType.sqf";
  57. };
  58. #endif
  59. class PlayerEditingAreaSize
  60. {
  61. title = $STR_A3_MP_ZGM_m11.Altis_Params_PlayerEditingAreaSize;
  62. values[] = {0,100,200,500,1000};
  63. texts[] = {0,100,200,500,1000};
  64. default = 0;
  65. };
  66. #ifndef GUERFRIENDLY_DEFAULT
  67. #define GUERFRIENDLY_DEFAULT -1
  68. #endif
  69. class GuerFriendly
  70. {
  71. title = $STR_DISP_INTEL_EDIT_GUERILLA;
  72. values[] = {-1,1,0,2};
  73. texts[] = {
  74. $STR_DISP_INTEL_NONE_FRIENDLY,
  75. $STR_DISP_INTEL_WEST_FRIENDLY,
  76. $STR_DISP_INTEL_EAST_FRIENDLY,
  77. $STR_DISP_INTEL_BOTH_FRIENDLY
  78. };
  79. default = GUERFRIENDLY_DEFAULT;
  80. function = "BIS_fnc_paramGuerFriendly";
  81. };
  82. };
  83.  
  84. #include "VAS\menu.hpp"
  85.  
  86. class CfgFunctions
  87. {
  88. #include "VAS\cfgfunctions.hpp"
  89. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement