Comment on page
Actions Option
Close the UI.
- 'close'
Will do nothing.
- 'none'
Send a message to the player, support color code.
- 'message: Hello!'
Send a message to all online players, support color code.
- 'announcement: Hello!'
Give players potion effect.
- 'effect: BLINDNESS;;1;;60'
BLINDNESS is SpigotAPI effect ID, its different form minecraft effect namespace, you can find them here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html.
1 is effect level.
60 is effect duration.
Teleport player to specified location.
- 'teleport: LobbyWorld;;0;;128;;10'
LobbyWorld is world name.
0 is X pos.
128 is Y pos.
10 is Z pos.
You can also add yaw and pitch at the end of action string, like:
- 'teleport: DungeonWorld;;100;;30;;300;;90;;0'
Make the player excutes a command.
- 'player_command: tell i am a boy!'
Make the console excutes a command.
- 'console_command: op %player%'
Last modified 1mo ago