Essentials Home

Discussion in 'Bukkit Help' started by MineZeroServer, Jan 25, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    MineZeroServer

    I want the default users to be able to set only 2 homes.

    they have the following permissions:

    essentials.sethome
    essentials.sethome.multiple
    essentials.sethome.multiple.[set]

    Should I get rid of any permission? and how do I set their default to 2?

    Here is the config file:
    Code:
    permissions:
        backends:
            file:
                file: permissions.yml
        backend: file
        superperms:
            parent-nodes: true
            enable: true
            strict-mode: false
        createUserRecords: false
        allowOps: false
        debug: false
        basedir: plugins/PermissionsEx
    
    Where do I add it?
     
  2. Offline

    MrRedLogan

    1. If you are using Essentials I assume you are using Group Manager?
    2. Inside the config.yml for essentials you will see a selection called "EssentialsHome".
    Inside of EssentialsHome is:
    Code:
    # When users die, should they respawn at their first home, instead of the spawnpoint or bed?
    respawn-at-home: false
     
    # If no home is set send you to bed or spawn when /home is used
    spawn-if-no-home: true
     
    # Allows people to set their bed at daytime
    update-bed-at-daytime: true
     
    # Allow players to have multiple homes.
    # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
    # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
    sethome-multiple:
    #essentials.sethome.multiple.default
      default: 1
    #essentials.sethome.mutiple.member
      member: 3
      vip: 5
      supporter: 10
     
    #Set timeout in seconds for players to accept tpa before request is cancelled.
    #Set to 0 for no timeout
    tpa-accept-cancellation: 30
    Where it says "Default" put the number 2 and give the permission to the player. The permission nodes would be:

    essentials.sethome
    essentials.sethome.multiple
    essentials.sethome.multiple.default

    Hope I Helped =)
     
Thread Status:
Not open for further replies.

Share This Page