Hello,
I am wondering if it is possible to have specific worlds to use some plugins, and other worlds to not.
Some servers like evo-ctf.net or the ShotBow network do this with help of bukkit link, but is there a way to set specific plugins for a certain world?
Thank you for your time!
I am wondering if it is possible to have specific worlds to use some plugins, and other worlds to not.
Some servers like evo-ctf.net or the ShotBow network do this with help of bukkit link, but is there a way to set specific plugins for a certain world?
Thank you for your time!
1
Bukkit link is a plugin you use when you want to communicate over different servers, so they have different servers running.
You can't choose to enable specific plugins into a specific world on the same server (if the plugin can't handle it). But you can set different permissions in a specific world, so you for example can't use /ban in the main world, but you can in nether.
Here's an example of your permissions.yml file (if you're running PEX):
So for this example, you can type /help in all worlds, but only ban in nether.
This can be useful if you want to put, for example, worldedit.* instead of nether.
You can't choose to enable specific plugins into a specific world on the same server (if the plugin can't handle it). But you can set different permissions in a specific world, so you for example can't use /ban in the main world, but you can in nether.
Here's an example of your permissions.yml file (if you're running PEX):
groups:
AnyRank:
permissions:
- bukkit.command.help
worlds:
world_nether:
permissions:
- bukkit.command.banSo for this example, you can type /help in all worlds, but only ban in nether.
This can be useful if you want to put, for example, worldedit.* instead of nether.
