Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linuskay/skycommand
A Minecraft Spigot plugin that allows admins to configure commands to be ran when players click the sky.
https://github.com/linuskay/skycommand
minecraft minecraft-plugin spigot spigot-plugin
Last synced: 2 days ago
JSON representation
A Minecraft Spigot plugin that allows admins to configure commands to be ran when players click the sky.
- Host: GitHub
- URL: https://github.com/linuskay/skycommand
- Owner: LinusKay
- Created: 2021-05-31T05:45:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-31T13:03:50.000Z (over 3 years ago)
- Last Synced: 2023-07-14T04:29:24.915Z (over 1 year ago)
- Topics: minecraft, minecraft-plugin, spigot, spigot-plugin
- Language: Java
- Homepage:
- Size: 31.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sky Command
A Spigot plugin that allows server owners to configure commands to be run when the player clicks the sky.
Commands are run when the player left-clicks the sky above the configured angle.
```YAML
# minimum vertical angle of player head for commands to be run
# value can be any number between -90 and 90
# horizon is 0, directly above is 90, directly below is -90
minimum_angle: -45
# all configured commands
# multiple commands may be configured to be run depending on the player's permissions
commands:
# command name
# REQUIRED
help:
# permission node required by player for command to be run
# OPTIONAL
permission: "skycommand.help"
# command to be run
# REQUIRED
command: "help"
# whether the command should be run by the player or via console
# OPTIONAL
run_as_op: false
msg:
permission: "skycommand.msg"
command: "msg {player} yo"
run_as_op: true
```