Advertisement
Marcely99

Marcely's Bedwars lobby-config

Jul 6th, 2016 (edited)
2,172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.31 KB | None | 0 0
  1. ########################
  2. # Visit the wiki page for further info: https://s.marcely.de/mbww8
  3. ########################
  4.  
  5. view-achievements: # The unique id of this item. Is not bound to the type of the handler, just has to be unique from others.
  6.   name: '%Lobby_Item_Achievements%' # 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_achievements' # The handler of the item that determines what exactly happens when the item is being used.
  9.   item: 'nether_star' # The item stack that'll be placed at the given slot.
  10.  
  11. select-team:
  12.   name: '%Lobby_Item_SelectTeam%'
  13.   slot: 1
  14.   handler: 'bedwars:select_team'
  15.   item: 'leather_boots'
  16.  
  17. vote-arena:
  18.   name: '%Lobby_Item_VoteArena%'
  19.   slot: 1
  20.   handler: 'bedwars:vote_arena'
  21.   item: 'bed'
  22.  
  23. force-start:
  24.   name: '%Lobby_Item_ForceStart%'
  25.   slot: 4
  26.   handler: 'bedwars:force_start'
  27.   item: 'clock'
  28.  
  29. leave:
  30.   name: '%Lobby_Item_Leave%'
  31.   slot: 8
  32.   handler: 'bedwars:leave'
  33.   item: 'redstone'
  34.  
  35. # You're able to add custom items by simply copy & pasting the existing ones
  36. # Only make sure that there aren't multiple items with the same id
  37. # Furthmore, you might want to check out the API for adding your custom handlers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement