Need help? Ask on the forum, ask a fellow user or developer (join us on IRC), or contact sk89q.
Contribute to the wiki, edit this page! Register an account, or login with Facebook first.
HEY! Do you integrate (or want to) a plugin into yours? Do you help work on WE/WG/etc.? Please subscribe to our mailing list!
CommandHelper
Permissions Settings
It's usually not necessary to define permissions to use the basic alias/macro functionality. More advanced features like scripting may require some permissions to be defined.
Contents |
External Commands
All permissions remain the same when commands in plugins or vanilla server are called by this plugin.
Example: Bob does not have permission to use the /give command. If Bob triggered an alias which calls /give, he still wouldn't be able to use it.
The exception to this is the runas() function, which can override permissions in some cases. However, the function itself is restricted and requires permission to use (see below).
Internal Commands
These commands are provided by the plugin itself and are not aliases:
| Permission | Command | Description |
|---|---|---|
| No permission required | /commandhelper <arguments> | Gain meta information about CommandHelper. |
| /runalias <alias> | Run an alias. Can be used by other plugins to call aliases. <alias> includes the forward slash. Example: /runalias /eat cake would always fire off the alias /eat cake | |
| commandhelper.repeat | /repeat or /. | Repeat the last command or alias. |
| commandhelper.reloadaliases | /reloadalias or /reloadaliases | Reload all aliases from file. |
| commandhelper.useralias | /alias <alias> | Create a user alias. |
| /viewalias or /viewaliases | View user aliases. | |
| /delalias <name> | Remove a user alias. | |
| commandhelper.interpreter | /interpreter | Puts your chat into interpreter mode. Note that interpreter mode must also be enabled in the preferences. |
Note that at this time, it is not recommended that you allow untrusted users access to the user alias or interpreter functionality. There are exploitable aspects of the system that have not been addressed yet. Having said that, user aliases are recommended for trusted users.
Function Types
Functions are divided into two groups:
Unrestricted Functions
These are used for typical programming type tasks or retrieving basic information. They are considered to be harmless on their own.
Example: if() can not be used to bypass protections or do harm.
No permissions are required to use these.
Restricted Functions
These often tie into game functionality and have some potential for abuse.
Example: spawn_mob() can be used to spawn a large number of creepers.
Permission is required to use these. The next section describes how to give access to these functions.
Scripting Permissions
There are two ways to handle the permissions for restricted functions:
Function Based Permissions
These permissions apply no matter where or how a function is used.
| Permission | Description |
|---|---|
| commandhelper.func.compile.<function name> | Allow compilation of the function <function name> into a script. Basically, allow the creation of user aliases containing this function. |
| commandhelper.func.use.<function name> | Allow usage of the function <function name> in a compiled script. Basically, allow running created aliases containing this function (including the global configuration). |
It is not recommended to give these permissions to untrusted users unless you know exactly what you're doing.
Instead, carefully craft aliases for them to prevent abuse. Read on to learn how to create permissions for individual aliases.
Alias Based Permissions
Alias based permissions apply to all functions within an alias. Think of them like overrides. They allow for more fine grained control since you can control the content of the alias. These permissions allow for quick, common sense default handling of aliases. If, however, you need very fine grained control, see the section below with star aliases. Alias based permissions only act to further unrestrict otherwise restricted functions. That is, you can't use alias permissions to directly deny access to a command in which the user would otherwise have permission for. The idea is that if you trust a user to use all the functions in a script, then it doesn't matter so much how those functions are arranged, they should still be able to use the command as a whole. This isn't always true though, so in those cases, you'll need to do your own permission checking from within the alias (see the section on star permissions below).
These can not be used in user aliases.
To create permissions for an alias, add a label in front of it:
<label>:/command = ...
There are two types of labels:
Permission Labels
Put only letters, numbers and underscores in the label to assign the permission commandhelper.alias.<label> to the entire alias.
Example: tasty:/eat cake = ... would cause people with commandhelper.alias.tasty to be given permission to use /eat cake
Group Labels
Start your label with a tilde "~" to turn it into a group label.
Add the group names separated by forward slashes "/" to give them permission.
Add a hyphen "-" in front of a group name to remove permissions instead.
Groups take priority from left to right.
Example: ~mods/-admin/default:/eat cake = ... would give permission to mods and the default group, but remove permissions from the admins (causing restricted functions to always fail). A user in both the admin and default group would lose permissions due to how priority works.
Star Label
As an alternative to assigning all groups to an alias, or giving all groups a permission, then tagging the alias with that label, you can use the star label, which opens the alias up to all users. It essentially disables permission checking entirely for that one alias.
*:/safeAlias = dangerous('careful')
This is useful in combination with the has_permission() function, in the case where you need super fine grained control of the permissions for this alias. You can open up the alias to everyone, then more carefully select the behavior from within the alias, based on the results of has_permission()
Extra Notes
Shorthand Permissions
commandhelper.<permission> can always be shortened into ch.<permission> if you feel like typing less.
Console Commands
Global aliases can always be triggered from the console. However, some functions expecting a player will fail.
External Commands will generally behave as if you typed the command from console yourself.
| |||||||||||||||||||||||