Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 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 = Local
  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. Port = 3406
  31. Database = db199313
  32. Username = db199313
  33. Password = SA2xIun3nA
  34.  
  35. ;If using OFFICIAL hive, the settings in this section have no effect, appropriate layout will be used
  36. [Characters]
  37. ;The field name that Player's IDs are stored in (unique per game license)
  38. ;Some table layouts have this as PlayerID, and some as PlayerUID, that's why this is configurable
  39. ;IDField = PlayerUID
  40. ;The field name that Player's World Position and rotation is stored in
  41. ;Enables you to run multiple different maps (different instances) off the same character table
  42. ;WSField = Worldspace
  43.  
  44. ;If using OFFICIAL hive, the settings in this section have no effect, as it will clean up by itself
  45. [Objects]
  46. ;Which table should the objects be stored and fetched from ?
  47. ;Table = Object_DATA
  48.  
  49. ;Negative values will disable this feature
  50. ;0 means that ALL empty placed items will be deleted every server restart
  51. ;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
  52. ;CleanupPlacedAfterDays = 30
  53.  
  54. ;Flag indicating whether hiveext should detect vehicles out of map boundaries (X < 0, or Y > 15360) and reset their position to []
  55. ;Note: YOU MUST have a proper dayz_server.pbo that supports this feature, otherwise you will get script errors
  56. ;You can find that file under the SQF directory for your server version
  57. ;ResetOOBVehicles = false
  58.  
  59. ;If using OFFICIAL hive, the settings in this section have no effect, it will manage objects on its own
  60. [ObjectDB]
  61. ;Setting this to true separates the Object fetches from the Character fetches
  62. ;That means that the Object Table must be on this other database
  63. ;Use = false
  64.  
  65. ;The settings here have the same meaning as in [Database], and are only used if the setting above is set to true
  66. ;Type = MySQL
  67. ;Host = localhost
  68. ;Port = 2302
  69. ;Database = DennisG
  70. ;Username = DennisG
  71. ;Password = SilentDynasty01
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement