Advertisement
Guest User

123

a guest
Aug 13th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;This is a comment
  2. ;Comments above a certain setting will provide it's description
  3.  
  4. ;The format for a setting is
  5. ;Variable = Value
  6.  
  7. ;If you see a commented line of that form, it means that the setting is optional, and the Value shows the default
  8. ;To change from the default, simply uncomment the line and change the Value
  9.  
  10. ;This configuration file should be placed inside your server instance's configuration directory (like cfgdayz)
  11.  
  12. [Time]
  13. ;Possible values: Local, Custom, Static
  14. ;You cannot use Static on OFFICIAL Hive, it will just revert to Local
  15. Type = Static
  16. ;If using Custom type, offset from UTC in hours (can be negative as well)
  17. ;Offset = -8
  18. ;If using Static type (Hour value always the same on every server start), the value (0-24) to set the Hour to
  19. Hour = 13
  20.  
  21. [Database]
  22. ;Hostname or IP of the server to connect to
  23. ;If you leave this line commented or blank, HiveExt will connect to the OFFICIAL Hive, which requires registration
  24. ;See support.dayzmod.com for more information on what OFFICIAL Hive means, what are the rules, etc.
  25. ;If using OFFICIAL hive, the rest of the settings in this section have no effect
  26. Host = localhost
  27.  
  28. ;Currently, only MySQL is supported
  29. Type = MySQL
  30.  
  31. ;Port to connect to. The default is the default listening port of a server of the selected Type
  32. ;Instead of specifying Port, you can specify Socket and set Value to the socket name
  33. Port = 3306
  34.  
  35. ;Database name to connect to.
  36. Database = dayz
  37.  
  38. ;Username to connect with
  39. Username = root
  40. ;Password to authenticate with (default is blank)
  41. Password =
  42.  
  43. ;If using OFFICIAL hive, the settings in this section have no effect, appropriate layout will be used
  44. [Characters]
  45. ;The field name that Player's IDs are stored in (unique per game license)
  46. ;Some table layouts have this as PlayerID, and some as PlayerUID, that's why this is configurable
  47. ;IDField = PlayerUID
  48. ;The field name that Player's World Position and rotation is stored in
  49. ;Enables you to run multiple different maps (different instances) off the same character table
  50. ;WSField = Worldspace
  51.  
  52. ;If using OFFICIAL hive, the settings in this section have no effect, as it will clean up by itself
  53. [Objects]
  54. ; Table name for the virtual garage data to be stored in, default table is 'garage'
  55. ;VGTable = garage
  56. ; Days for a stored vehicle to be cleaned up after, if set to -1 this feature is disabled. Default 35 days
  57. ;CleanupVehStoredDays = 35
  58. ; Log object cleanup DELETE statements (per object), including virtual garage. Default is false
  59. ;LogObjectCleanup = false
  60. ;Which table should the objects be stored and fetched from ?
  61. ;Table = Object_DATA
  62.  
  63. ;Negative values will disable this feature
  64. ;0 means that ALL empty placed items will be deleted every server restart
  65. ;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
  66. ;Leaving CleanupPlacedAfterDays below commented (with a ; in front) will NOT disable the cleanup, but will make the objects get cleaned up after the default 6 days.
  67. ;CleanupPlacedAfterDays = 6
  68.  
  69. ;Flag indicating whether hiveext should detect vehicles out of map boundaries (X < 0, or Y > 15360) and reset their position to []
  70. ;Note: YOU MUST have a proper dayz_server.pbo that supports this feature, otherwise you will get script errors
  71. ;You can find that file under the SQF directory for your server version
  72. ;ResetOOBVehicles = false
  73.  
  74. ;A string of comma separated object class names that are to be cleaned up, after the CleanupPlacedAfterDays period, regardless of inventory
  75. ;This variable was implemented to compensate for door/plot management storing information in the inventory field
  76. ;custom buildables which use the inventory field should be added to this variable
  77. ;If you wish to cleaup locked storage objects, instead of letting them zero out, you can add them to the variable
  78. ;Do not use double quotation marks, only use single quotation marks [']
  79. ;MaintenanceObjects = 'Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_WoodDoorLocked','CinderWallDoorLocked_DZ','CinderWallDoorSmallLocked_DZ','Plastic_Pole_EP1_DZ'
  80.  
  81. ;If using OFFICIAL hive, the settings in this section have no effect, it will manage objects on its own
  82. [ObjectDB]
  83. ; Table name for the virtual garage data to be stored in, default table is 'garage'
  84. VGTable = garage
  85. ; Days for a stored vehicle to be cleaned up after, if set to -1 this feature is disabled. Default 35 days
  86. CleanupVehStoredDays = 35
  87. ; Log object cleanup DELETE statements (per object), including virtual garage. Default is false
  88. LogObjectCleanup = true
  89. ;Setting this to true separates the Object fetches from the Character fetches
  90. ;That means that the Object Table must be on this other database
  91. Use = false
  92.  
  93. ;The settings here have the same meaning as in [Database], and are only used if the setting above is set to true
  94. ;Type = MySQL
  95. ;Host = localhost
  96. ;Port = 3306
  97. ;Database = dayz
  98. ;Username = root
  99. ;Password =
  100. [Logger]
  101. ;Possible values: trace, debug, information, notice, warning, error, critical, fatal, none
  102. ;They are sorted by importance (low to high), with trace being the most verbose, and none would turn off logging
  103. ;This controls both the file output level, and the console output level
  104. ;Level = trace
  105.  
  106. ;Uncomment this option to override the logging level for the console only
  107. ;The specified level can only be higher than the global one, setting lower values will have no effect
  108. ;So for example, if you want to have information-level logs in your file, but only warning-level and higher in your console
  109. ;You would uncomment this option and set it to warning
  110. ;Leaving it commented out means there's no special level for the console, so it will just use the global one
  111. ;ConsoleLevel = trace
  112.  
  113. ;By default, the HiveExt console log output will go to the Arma2 server window, with colour highlighing by importance
  114. ;If you want to use the old style, separate windows console window for the HiveExt log output, set this option to true
  115. ;SeparateConsole = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement