Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.75 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. ;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 = 10
  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 = xxxxxxxxx
  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 = xxxxxxxxx
  37.  
  38. ;Username to connect with
  39. Username = xxxxxxxxx
  40. ;Password to authenticate with (default is blank)
  41. Password =xxxxxxxxxx
  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. ;Which table should the objects be stored and fetched from ?
  55. ;Table = Object_DATA
  56.  
  57. ;Negative values will disable this feature
  58. ;0 means that ALL empty placed items will be deleted every server restart
  59. ;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
  60. ;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.
  61. ;CleanupPlacedAfterDays = 6
  62.  
  63. ;Flag indicating whether hiveext should detect vehicles out of map boundaries (X < 0, or Y > 15360) and reset their position to []
  64. ;Note: YOU MUST have a proper dayz_server.pbo that supports this feature, otherwise you will get script errors
  65. ;You can find that file under the SQF directory for your server version
  66. ;ResetOOBVehicles = false
  67.  
  68. ;A string of comma separated object class names that are to be cleaned up, after the CleanupPlacedAfterDays period, regardless of inventory
  69. ;This variable was implemented to compensate for door/plot management storing information in the inventory field
  70. ;custom buildables which use the inventory field should be added to this variable
  71. ;If you wish to cleaup locked storage objects, instead of letting them zero out, you can add them to the variable
  72. ;Do not use double quotation marks, only use single quotation marks [']
  73. ;MaintenanceObjects = 'Land_DZE_GarageWoodDoorLocked','Land_DZE_LargeWoodDoorLocked','Land_DZE_WoodDoorLocked','CinderWallDoorLocked_DZ','CinderWallDoorSmallLocked_DZ','Plastic_Pole_EP1_DZ'
  74.  
  75. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  76. ;; VG Addition ;;
  77. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  78. ; Table name for the virtual garage data to be stored in, default table is 'garage'
  79. VGTable = garage
  80. ; Days for a stored vehicle to be cleaned up after, if set to -1 this feature is disabled. Default 35 days
  81. CleanupVehStoredDays = 20
  82. ; Log object cleanup DELETE statements (per object), including virtual garage. Default is false
  83. LogObjectCleanup = true
  84.  
  85. ;If using OFFICIAL hive, the settings in this section have no effect, it will manage objects on its own
  86. [ObjectDB]
  87. ;Setting this to true separates the Object fetches from the Character fetches
  88. ;That means that the Object Table must be on this other database
  89. ;Use = false
  90.  
  91. ;The settings here have the same meaning as in [Database], and are only used if the setting above is set to true
  92. ;Type = MySQL
  93. ;Host = localhost
  94. ;Port = 3306
  95. ;Database = dayz
  96. ;Username = root
  97. ;Password =
  98. [Logger]
  99. ;Possible values: trace, debug, information, notice, warning, error, critical, fatal, none
  100. ;They are sorted by importance (low to high), with trace being the most verbose, and none would turn off logging
  101. ;This controls both the file output level, and the console output level
  102. ;Level = trace
  103.  
  104. ;Uncomment this option to override the logging level for the console only
  105. ;The specified level can only be higher than the global one, setting lower values will have no effect
  106. ;So for example, if you want to have information-level logs in your file, but only warning-level and higher in your console
  107. ;You would uncomment this option and set it to warning
  108. ;Leaving it commented out means there's no special level for the console, so it will just use the global one
  109. ;ConsoleLevel = trace
  110.  
  111. ;By default, the HiveExt console log output will go to the Arma2 server window, with colour highlighing by importance
  112. ;If you want to use the old style, separate windows console window for the HiveExt log output, set this option to true
  113. ;SeparateConsole = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement