- Native Minecraft Version:
- 1.16
- Tested Minecraft Versions:
- 1.7
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
- 1.13
- 1.14
- 1.15
- 1.16
DescriptionCommandQueue is a plugin designed for staff members to execute a command on a certain player's join.
Features[+] Simplified commands & customize-able permissions
[+] MySQL Support
[+] Supports offline servers
[+] Fast support (Sage#9591 on Discord)
[+] API for developers
Commands/CommandQueue <player> <command>
Permissionscommandqueue.admin - Main permission node
commandqueue.notify - Staff Notify permission node
ConfigCode (YAML):#Database details (Currently only supports MySQL
database:
type: mysql
mysql:
host: 127.0.0.1
port: 3306
databasename: 'CommandQueue'
user: 'admin'
password: 'pa$$w0rd'
sslenabled: false
messaging:
notify-staff:
enabled: true
format: "&e&lCQ» &f%command% &eran for &f%player%&e!"
player-not-online: "&e&lCQ» &c%player% is not online!"
command-success: "&e&lCQ» &aCommand added to the database!"
invalid-usage: "&e&lCQ» &cInvalid usage, try /commandqueue <player> <command>!"
permissions:
main: "commandqueue.admin"
notify-staff: "commandqueue.notify"APICode (Java)://Adds entry to the database through external source
CommandQueueAPI.addEntry(player, admin, command);