Configuration

Where can i configurate the plugin?

You can configurate the plugin in the config.yml file.

It's located:

  • for MultiArena or Shared mode in */plugins/Bedwars1058/Addons/MapSelector/config.yml directory

  • for Bungee mode in */plugins/BedwarsProxy/Addons/MapSelector/config.yml directory

What do i can configurate?

map-selector:
  debug: false
  storage: SQLite
  last-date: 4

  messages:
    open:
      group-doesnt-exists: '&cThis group doesn''t exists'
      missing: '&cUse: /bwmenu <group>'
      missing2: '&cUse: /bwmap <group>'
    reload:
      success: '&aConfiguration reloaded!'
    reset-uses:
      missing: '&cUse: /bwselector resetuses <player>'
      not-found: '&cPlayer not found!'
      success: '&aReset uses of {player}!'
    set-uses:
      missing: '&cUse: /bwselector setuses <player> <uses>'
      not-found: '&cPlayer not found!'
      success: '&aSet uses of {player} to {uses}!'
    limit-reached: '&cYou''ve reached your limit of daily map selections today!'
    no-favorites-maps: '&cYou don''t have any favorite maps'
    no-maps: '&cThere aren''t any available arenas of this group'
    not-party-leader: '&cYou can''t join arenas because your aren''t the leader of
      your party'

  selections:
    #Permission to see maps
    permission: bwselector.selector
    
    #Unlimited message display
    unlimited-message: Unlimited
    
    selections:
      default:
        #Permissions for this selection type
        permission: bwselector.default
        
        #Daily uses.
        daily-uses: 3
        
        #True to give unlimited selections
        unlimited: false
      mvp+:
        permission: bwselector.mvp+
        daily-uses: 0
        unlimited: true
      admin:
        permission: bwselector.admin
        daily-uses: 0
        unlimited: true

  menus:
    bedwars-menu:
    
      #Gui Title
      title: '&8Play Bed Wars '
      
      #Gui Slots
      slots: 36
  
      #This is the items section, at the moment you can't add new items.
      #You can suggest a new item in my discord server, in the channel #suggestions.
      items:
      
        #This is the items section of the first gui.
        #Do not change the name of the item
        join-random:
        
          #Item Material
          #Formats: MATERIAL  /  MATERIAL:DATA  /  texure:skin-texture
          #Examples: WOOL (white)  /  WOOL:14 (red)  /  texture:4d1ebd794085e0648159e8f8fd504bdb5ccd26fd32a6a5ab2d669031931064b5
          material: BED
          
          #Item Amount
          amount: 1
          
          #True to make enchanted the item
          enchanted: false
          
          #Gui Slot
          #From 0 to Gui Slots - 1
          #Example: Gui Slots 27 --> min: 0  -  max: 26        
          slot: 12
          
          #Item Name
          name: '&aBed Wars ({groupName})'
          
          #Item Lore
          lore:
          - '&7Play a game of Bed Wars {groupName}.'
          - ''
          - '&eClick to play!'
          
          #Command on click
          #Action types:
      
          #Remove the string to execute the plugin's default action
      
          #Chat Message -> [chat] value
          #Player Command -> [player] command without slash
          #Console Message -> [console] command without slash
          #Server Connection -> [server] bungee/velocity server name
          #No action -> [no-action]
      
          #Examples:
          #[chat] hello world
          #[player] gamemode creative
          #[console] give {player} diamond
          #[server] lobby-2
          #[no-action]
          
          command: '[player] gamemode creative'
      
        #Other items...

Last updated