Minecraft Postal Service (MPS)
Minecraft Postal Service is a plugin I made to make sending items to players easier, not requiring the players to be anywhere near each other, while still being in the same world.
Features
Commands
- Easy to use command with arguments
- Ability to implement custom command arguments
- Sign integration for checking mailboxes
- Config for blacklisting items
- MailSendEvent for developer use
PermissionsCode (Text):/mps - Main command, no cool use
/mps check - Command to check your mailbox
/mps help <command/sign> - Help command, shows use and description for commands, also shows how to use signs with mailboxes
/mps send <player> - Sends the selected player the item in your hand
ConfigurationCode (Text):mps.command.check - Permission to check command (Default true)
mps.command.help - Permission to help command (Default true)
mps.command.send - Permission to send command (Default true)
mps.sign.create - Permission to create sign mailboxes (Default true)
mps.sign.use - Permission to use sign mailboxes (Default true)
In the config.yml file, there is a section called "blacklisted-items". Any item listed there will not be able to be mailed to players. A list of items can be found here, avoid the 1.9 items that are listed. There is no override for this in anyway. Be careful of what you put there.
The other section is called mailboxes. This section stores all player mailboxes and should under no circumstance be modified.
Compatibilities
Spigot 1.8.8+
Developers
To implement custom command arguments, extend the CommandStructure class and in onEnable call your command constructor. Example:
Extending
Calling constructorCode (Java):public class ExampleCommand extends CommandStructure {
There is also the MailSendEvent that is called when a player uses the /mps send command. It's use is pretty straight forward, cancelling the event will cause the mail not to send.Code (Java):@Override
public void onEnable() {
new ExampleCommand();
}
-
We are planning scheduled maintenance on this website on Friday 5 March (tomorrow) at 4:00 am UTC. It is estimated that this maintenance will last 15 minutes. You can view this time in your local timezone here. Thanks.Dismiss Notice

Minecraft Postal Service (MPS) 2.0
Send items to other players easily!
Recent Updates
- New feature! Jan 18, 2016