Advertisement
MiunaPA

Untitled

Nov 9th, 2020
982
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.72 KB | None | 0 0
  1. Lang:
  2.  
  3.   # Defines the Plugin-Language
  4.   lang: zh_cn
  5.  
  6.  
  7.  
  8. Options:
  9.  
  10.   # Checks if a new Update got released
  11.   check-for-update: false
  12.  
  13.   Sit:
  14.    
  15.     # Defines whether the Player gets centered on a Block if he sits down
  16.     sit-at-block-center: true
  17.    
  18.     # Defines whether a Player can click on Stairs to sit down
  19.     sit-on-stairs-by-click: true
  20.    
  21.     # Defines whether a Player can click on Slabs to sit down
  22.     sit-on-slabs-by-click: true
  23.    
  24.     # Defines whether a Player can click on Carpets to sit down
  25.     sit-on-carpets-by-click: true
  26.    
  27.     # Defines whether a Player can sit in Block-Constellation where he probably take Damage
  28.     sit-in-block: false
  29.    
  30.     # Defines whether the Player can sit in a waterlogged Block
  31.     sit-in-waterlogged-block: false
  32.    
  33.     # Defines whether a Player gets kicked from his Seat if the Holder-Block gets destroyed
  34.     stand-up-on-block-break: true
  35.    
  36.     # Defines whether the Player get teleported back to the Location from where he start sitting when he stand up
  37.     back-to-stand-location: true
  38.    
  39.     # Defines whether more than one Player can sit on one Block
  40.     sit-on-same-block: false
  41.    
  42.     # Defines whether the Player needs a free Hand to click and sit down
  43.     sit-only-with-free-hand: true
  44.    
  45.     # Defines the maximum Range from where a Player can sit down (0 means unlimited)
  46.     max-distance: 0.00
  47.    
  48.     # Defines how fast a Seat calculate his Rotation to the Player-Rotation
  49.     seat-rotation-ticks: 2
  50.    
  51.     # Defines whether a Player who gets pushed by a Piston will be pushed through all Blocks to the end of the Blockline
  52.     strong-piston-push: false
  53.    
  54.     # Defines whether a Player should get a custom Message when he sit down
  55.     send-custom-sit-message: true
  56.    
  57.     PlayerSit:
  58.      
  59.       # Defines whether a Player can click on another Player to sit on him
  60.       allow-player-sit-on-player: false
  61.      
  62.       # Defines whether a Player can click on an NPC to sit on him
  63.       allow-player-sit-on-npc: false
  64.      
  65.       # Defines the maximum Amount of Players who can sit stacked (0 means unlimited)
  66.       max-player-sit-amount: 2
  67.      
  68.       # Defines whether all Players will be ejected when the Carrier sneaks
  69.       eject-players-with-sneak: true
  70.      
  71.      
  72.      
  73.   Lay:
  74.    
  75.     # Defines whether the Player gets centered on a Block if he lays down
  76.     lay-at-block-center: true
  77.    
  78.     # Defines whether a Player gets kicked from this Lay-Position if the Holder-Block gets destroyed
  79.     stand-up-on-block-break: true
  80.    
  81.     # Defines whether more then one Player can lay on one Block
  82.     lay-on-same-block: false
  83.    
  84.     # Defines whether a Player should get a custom Message when he lay down
  85.     send-custom-lay-message: true
  86.    
  87.     # Defines whether a Player can interact with his Environment while lying down
  88.     lay-player-can-interact: false
  89.    
  90.     # Defines whether a Player makes snoring noises while lying down
  91.     lay-play-snoring-sounds: true
  92.    
  93.     # Defines whether snoring noises only occur at night
  94.     play-snoring-only-at-night: true
  95.    
  96.     # Defined, the quiet time between two snoring noises
  97.     snoring-sound-ticks: 80
  98.    
  99.    
  100.    
  101.   # Defines the Worlds in which a Player cannot sit or lay
  102.   WorldBlacklist:
  103.  - "test_world_1"
  104.   - "test_world_2"
  105.  
  106.   # Defines the List of Material on which a Player cannot sit or lay (Write the Names in upper case)
  107.   MaterialBlackList:
  108.  - "BEDROCK"
  109.  
  110.   # Defines the List of Commands which cannot be executed while sitting or lying down (Write the Commands in lower case)
  111.   BlockedCommandList:
  112.  - "testcommand"
  113.  
  114.   # Defines whether a Player gets up when he take Damage
  115.   stand-up-on-damage: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement