Advertisement
Guest User

config.yml

a guest
Sep 19th, 2019
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. # Whether to enable or disable this plugin.
  2. enabled: true
  3.  
  4. # Whether to ignore the "door.claimdoor" permission to claim doors.
  5. ignoreClaimPermission: true
  6.  
  7. # Whether to ignore the "door.addremovetrusted" permission to claim doors.
  8. ignoreTrustedPermission: true
  9.  
  10. # Whether to save the claimed doors to file periodically and on server close. Can cause server lag depending on how many doors are claimed, so I
  11. # would recommend setting the interval to something that isn't that often.
  12. saveClaimedDoorsToFile: false
  13.  
  14. # Whether to save the blocked doors to file periodically and on server close. Can cause server lag depending on how many doors are blocked, so I
  15. # would recommend setting the interval to something that isn't that often.
  16. saveBlockedDoorsToFile: true
  17.  
  18. # Whether doors owned by players who disconnect should be unclaimed.
  19. clearOwnershipOnDisconnect: true
  20.  
  21. # Whether owned doors should be unclaimed on server close.
  22. clearOwnershipOnServerClose: true
  23.  
  24. # Whether to tell a person trying to access a door they aren't allowed to open the owner of the door.
  25. announceOwnerOnFailedEntry: true
  26.  
  27. # Whether to allow the claiming of iron doors. The plugin currently handles the opening of doors itself,
  28. # so if you have a plugin that allows for the opening of iron doors, they might conflict
  29. useIronDoors: true
  30.  
  31. # Whether players should still be able to open and close blocked doors.
  32. blockInteractionOnBlockedDoors: false
  33.  
  34. # The color to use when a message is sent to a player telling them they succeeded. Make sure to use the and symbol (&) instead of the unicode symbol.
  35. # Color codes located here: http://rjwattenhofer.com/articles/gaming/colors/
  36. successColor: '&2'
  37.  
  38. # The color to use when a message is sent to a player telling them they failed. Make sure to use the and symbol (&) instead of the unicode symbol.
  39. # Color codes located here: http://rjwattenhofer.com/articles/gaming/colors/
  40. errorColor: '&4'
  41.  
  42. # Amount in time (in ticks. 20 ticks to a second at 20tps) in between autosaves of the claimed doors or blocked doors database. Setting this to a low
  43. # value can cause server lag. The databases will also be saved on proper server close. Only databases enabled to save in this config file will be saved.
  44. autoSaveDatabaseRepeatTime: 300
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement