Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  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. ;Type = Local
  17. ;If using Custom type, offset from UTC in hours (can be negative as well)
  18. Offset = -3
  19. ;These 2 settings only apply if using Static type (Custom date/time on every server start)
  20. ;The value (0-24) to set the Hour to, if commented or empty then the hour won't be changed
  21. Hour = 9
  22. ;The value (DD/MM/YYYY) to set the Date to, if commented or empty then the date won't be changed
  23. ;Date = 4.1.2013
  24.  
  25. [Logger]
  26. ;Possible values: trace, debug, information, notice, warning, error, critical, fatal, none
  27. ;They are sorted by importance (low to high), with trace being the most verbose, and none would turn off logging
  28. ;This controls both the file output level, and the console output level
  29. ;Level = warning
  30.  
  31. ;Uncomment this option to override the logging level for the console only
  32. ;The specified level can only be higher than the global one, setting lower values will have no effect
  33. ;So for example, if you want to have information-level logs in your file, but only warning-level and higher in your console
  34. ;You would uncomment this option and set it to warning
  35. ;Leaving it commented out means there's no special level for the console, so it will just use the global one
  36. ;ConsoleLevel = warning
  37.  
  38. ;By default, the HiveExt console log output will go to the Arma2 server window, with colour highlighing by importance
  39. ;If you want to use the old style, separate windows console window for the HiveExt log output, set this option to true
  40. ;SeparateConsole = true
  41.  
  42. [Database]
  43. ;Hostname or IP of the server to connect to
  44. ;You can use the value "." (without quotes) to indicate named-pipe localhost connection
  45. ;If you leave this line commented or blank, HiveExt will connect to the OFFICIAL Hive, which requires registration
  46. ;See support.dayzmod.com for more information on what OFFICIAL Hive means, what are the rules, etc.
  47. ;If using OFFICIAL hive, the rest of the settings in this section have no effect
  48. Host = 127.0.0.1
  49.  
  50. ;The default is MySql, which is better supported than Postgre (completely untested)
  51. Type = MySql
  52.  
  53. ;Port to connect to. The default is the default listening port of a server of the selected Type
  54. ;Instead of specifying Port, you can specify Socket and set Value to the socket name
  55. Port = 3306
  56.  
  57. ;Database name to connect to (you must supply this if private).
  58. ;hivemind
  59. Database = viruz
  60.  
  61. ;Username to connect with
  62. Username = dayz
  63. ;Password to authenticate with (default is blank)
  64. Password = dayz
  65.  
  66. ;If using OFFICIAL hive, the settings in this section have no effect, appropriate layout will be used
  67. [Characters]
  68. ;The field name that Player's IDs are stored in (unique per game license)
  69. ;Some table layouts have this as PlayerID, and some as PlayerUID, that's why this is configurable
  70. ;IDField = PlayerUID
  71. ;The field name that Player's World Position and rotation is stored in
  72. ;Enables you to run multiple different maps (different instances) off the same character table
  73. ;WSField = Worldspace
  74.  
  75. ;If using OFFICIAL hive, the settings in this section have no effect, as it will clean up by itself
  76. [Objects]
  77. ;Which table should the objects be stored and fetched from ?
  78. ;Table = Object_DATA
  79.  
  80. ;Negative values will disable this feature
  81. ;0 means that ALL empty placed items will be deleted every server restart
  82. ;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
  83. ;CleanupPlacedAfterDays = 6
  84.  
  85. ;Flag indicating whether hiveext should detect vehicles out of map boundaries (X < 0, or Y > 15360) and reset their position to []
  86. ;Note: YOU MUST have a proper dayz_server.pbo that supports this feature, otherwise you will get script errors
  87. ;You can find that file under the SQF directory for your server version
  88. ;ResetOOBVehicles = false
  89.  
  90. ;If using OFFICIAL hive, the settings in this section have no effect, it will manage objects on its own
  91. [ObjectDB]
  92. ;Setting this to true separates the Object fetches from the Character fetches
  93. ;That means that the Object Table must be on this other database
  94. ;Use = false
  95.  
  96. ;The settings here have the same meaning as in [Database], and are only used if the setting above is set to true
  97. ;Type = MySql
  98. ;Host = localhost
  99. ;Port = 3306
  100. ;Database =
  101. ;Username = root
  102. ;Password =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement