Command
endstone.command
¶
Command
¶
Command(
name: str,
description: str | None = None,
usages: list[str] | None = None,
aliases: list[str] | None = None,
permissions: list[str] | None = None,
*args,
**kwargs
)
Represents a Command, which executes various tasks upon user input
permissions
property
writable
¶
The permissions required by users to be able to perform this command
execute
¶
execute(sender: CommandSender, args: list[str]) -> bool
Executes the command, returning its success
test_permission
¶
test_permission(target: CommandSender) -> bool
Tests the given CommandSender to see if they can perform this command.
test_permission_silently
¶
test_permission_silently(target: CommandSender) -> bool
Tests the given CommandSender to see if they can perform this command. No error is sent to the sender.
CommandExecutor
¶
CommandSender
¶
Bases: Permissible
Represents a command sender.
send_error_message
¶
send_error_message(message: str | Translatable) -> None
Sends this sender an error message
CommandSenderWrapper
¶
CommandSenderWrapper(
sender: CommandSender,
on_message: Callable[[str | Translatable], None] = None,
on_error: Callable[[str | Translatable], None] = None,
)
Bases: CommandSender
Represents a wrapper that forwards commands to the wrapped CommandSender and captures its output
ConsoleCommandSender
¶
ProxiedCommandSender
¶
Bases: CommandSender
Represents a proxied command sender.
callee
property
¶
callee: CommandSender
Returns the CommandSender which is being used to call the command.
caller
property
¶
caller: CommandSender
Returns the CommandSender which triggered this proxied command.