Single/multiple world ban

Discussion in 'Bukkit Help' started by Verge, Apr 23, 2014.

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

    Verge

    Hi,
    I am in the process of making a new Hub server, (Not in bungee yet), (Running Craftbukkit)

    All we want to add/find out if there is a way to ban players from a single world, or two worlds.

    Relevant plugins:
    - Essentials (the whole suite except for 'EssentialsSpawn'
    - Multiverse Core/portals/inventories
    - WorldGuard
    - PermissionsEX
    - ProtocolLib
    - Vault

    All input would be appreciated.
     
  2. Offline

    JWhy

  3. Offline

    Verge

    This is helpful but, I would like to give my supervisors the ability to ban the offending players only from one/two worlds, I understand what you mean but it isn't what I am aiming for.
     
  4. Offline

    Verge

  5. Offline

    JWhy

    Verge: Negate their access permissions for single worlds
     
  6. Offline

    Relicum

    @JWhy has given you the correct answer. If you wish to argue over it then you obviously don't need any help. What you are is frustrated that you don't quite understand what JWhy is saying, if that's the case just say so and your find ppl will be glad to help.
     
  7. Offline

    LHammonds

    You could even create a single/multi-command alias (via commands.yml) where you make a command called "worldban" that issues the correct commands based on the parameters provided. You could even make world-specific ban/unban commands to toggle the permission.

    Example of commands (aliases) moderators would issue:
    Code:
    /worldban <username>
    /skyworldban <username>
    /worldunban <username>
    /skyworldunban <username>
    
    Example alias definitions:
    Code:
    aliases:
        worldban:
        - "pex user $1 add -multiverse.access.world"
        worldunban:
        - "pex user $1 remove -multiverse.access.world"
    
    NOTE: This may not work if you COPY/PASTE it since I'm just typing this off the top of my head...but you should get the idea.

    LHammonds
     
Thread Status:
Not open for further replies.

Share This Page