Advertisement
Marcely99

Marcely's Bedwars spectator-inventory-config

Aug 10th, 2019 (edited)
874
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.20 KB | None | 0 0
  1. ########################
  2. # Visit the wiki page for further info: https://s.marcely.de/mbww14
  3. ########################
  4.  
  5. view-players: # The unique id of this item. Is not bound to the type of the handler, just has to be unique from others.
  6.   name: '%Spectator_Item_Teleporter%' # Will be shown when the player holds it on his hand / moves with his cursor over it
  7.   slot: 0 # The slot at which it's located at. Can go from 0 up to 8. 0 is the very left one.
  8.   handler: 'bedwars:view_players' # The handler of the item that determines what exactly happens when the item is being used.
  9.   item: 'watch' # The item stack that'll be placed at the given slot.
  10.  
  11. change-speed:
  12.   name: '%Spectator_Item_ChangeSpeed%'
  13.   slot: 1
  14.   handler: 'bedwars:change_speed'
  15.   item: 'arrow'
  16.  
  17. change-arena:
  18.   name: '%Spectator_Item_NextRound%'
  19.   slot: 7
  20.   handler: 'bedwars:next_round'
  21.   item: 'boat'
  22.  
  23. leave:
  24.   name: '%Spectator_Item_Leave%'
  25.   slot: 8
  26.   handler: 'bedwars:leave'
  27.   item: 'redstone'
  28.  
  29. # You're able to add custom items by simply copy & pasting the existing ones
  30. # Only make sure that there aren't multiple items with the same id
  31. # Furthmore, you might want to check out the API for adding your custom handlers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement