kazuken0814

Untitled

Jul 3rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.66 KB | None | 0 0
  1. # Configuration of the Chairs plugin for Craftbukkit
  2. # ------
  3. # A list of all compatible block and item names: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html.
  4. # ------
  5. # sit-blocks: Set the blocks you want to be able to sit down on and sitting height. Use material_name:sitting_height
  6. # valid-signs: Valid sign materials for sign check
  7. # auto-rotate: If set to true, you are automatically rotated to the descending face of the stairs-block when sitting down.
  8. # max-chair-width: Define how many blocks a chair can be long (set to number <= 0 for unlimited width).
  9. # sign-check: If set to true, you will only be able to sit down when there are signs on both of the ends of the chair.
  10. # distance: The maximum distance between the chair (the center of the block) and the player to be able to sit down (to prevent glitching through walls, etc.).
  11. # ignore-if-item-in-hand: Set this true to disable sititng if player is holding an item in hand.
  12. # sit-effects:
  13. #   healing:
  14. #     enabled: If set to truem heals player while sitting
  15. #     interval: Healing interval in ticks
  16. #     amount: Amount of health recovered
  17. #     max-percent: Max percent to which health can be recovered
  18. #   itempickup:
  19. #     enabled: If set to true, items will be picked up while sitting
  20. # sit-restrictions:
  21. #   commands:
  22. #     all: If set to true, restricts using all commands while sitting
  23. #     list: List of commands which player can't use while sitting
  24. # disabled-worlds: List of worlds in which sitting is disabled
  25. # ------
  26. sit-blocks:
  27. - WOOD_STAIRS:0.7
  28. - SPRUCE_WOOD_STAIRS:0.7
  29. - JUNGLE_WOOD_STAIRS:0.7
  30. - BIRCH_WOOD_STAIRS:0.7
  31. - SANDSTONE_STAIRS:0.7
  32. - COBBLESTONE_STAIRS:0.7
  33. - BRICK_STAIRS:0.7
  34. - SMOOTH_STAIRS:0.7
  35. - NETHER_BRICK_STAIRS:0.7
  36. - QUARTZ_STAIRS:0.7
  37. - ACACIA_STAIRS:0.7
  38. - DARK_OAK_STAIRS:0.7
  39. - RED_SANDSTONE_STAIRS:0.7
  40. - PURPUR_STAIRS:0.7
  41. valid-signs:
  42. - SIGN
  43. - WALL_SIGN
  44. - SIGN_POST
  45. - ITEM_FRAME
  46. auto-rotate: true
  47. max-chair-width: 20
  48. sign-check: false
  49. distance: 2
  50. ignore-if-item-in-hand: false
  51. sit-effects:
  52.   healing:
  53.     enabled: false
  54.     interval: 20
  55.     amount: 1
  56.     max-percent: 100
  57.   itempickup:
  58.     enabled: false
  59. sit-restrictions:
  60.   commands:
  61.     all: false
  62.     list:
  63.    - /examplecommand
  64. disabled-worlds: []
  65. messages:
  66.   sitting: '&7You are now sitting.'
  67.   standing: '&7You are no longer sitting.'
  68.   occupied: '&7This seat is occupied by &6%PLAYER%&7!'
  69.   reloaded: Chairs configuration reloaded.
  70.   no-permission: '&cYou do not have permission to do this!'
  71.   enabled: '&7You have enabled chairs for yourself!'
  72.   disabled: '&7You have disabled chairs for yourself!'
  73.   command-restricted: '&7You can''t issue this command while sitting'
Advertisement
Add Comment
Please, Sign In to add comment