Event
endstone.event
¶
ActorDamageEvent
¶
ActorDeathEvent
¶
Bases: MobEvent
Called when an Actor dies.
damage_source
property
¶
damage_source: DamageSource
Gets the source of damage which caused the death.
ActorEvent
¶
ActorExplodeEvent
¶
Bases: ActorEvent
, Cancellable
Called when an Actor explodes.
ActorKnockbackEvent
¶
ActorRemoveEvent
¶
ActorSpawnEvent
¶
ActorTeleportEvent
¶
Bases: ActorEvent
, Cancellable
Called when a non-player entity is teleported from one location to another.
BlockBreakEvent
¶
Bases: BlockEvent
, Cancellable
Called when a block is broken by a player.
BlockEvent
¶
BlockPlaceEvent
¶
Bases: BlockEvent
, Cancellable
Called when a block is placed by a player.
block_placed_state
property
¶
block_placed_state: BlockState
Gets the BlockState for the block which was placed.
BroadcastMessageEvent
¶
Bases: ServerEvent
, Cancellable
Event triggered for server broadcast messages such as from Server.broadcast
recipients
property
¶
recipients: set[CommandSender]
Gets a set of recipients that this broadcast message will be displayed to.
Cancellable
¶
Represents an event that may be cancelled by a plugin or the server.
cancelled
property
writable
¶
cancelled: bool
Gets or sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins. [Warning] Deprecated: Use is_cancelled instead.
is_cancelled
property
writable
¶
is_cancelled: bool
Gets or sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
cancel
¶
Cancel this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
DataPacketReceiveEvent
¶
Bases: ServerEvent
, Cancellable
Called when the server receives a packet from a connected client.
DataPacketSendEvent
¶
Bases: ServerEvent
, Cancellable
Called when the server sends a packet to a connected client.
Event
¶
EventPriority
¶
EventPriority(value: int)
Listeners are called in following order: LOWEST -> LOW -> NORMAL -> HIGH -> HIGHEST -> MONITOR
MobEvent
¶
PlayerChatEvent
¶
Bases: PlayerEvent
, Cancellable
Called when a player sends a chat message.
PlayerCommandEvent
¶
Bases: PlayerEvent
, Cancellable
Called whenever a player runs a command.
PlayerDeathEvent
¶
Bases: ActorDeathEvent
, PlayerEvent
Called when a player dies
PlayerEmoteEvent
¶
Bases: PlayerEvent
Called when a player uses and emote
PlayerEvent
¶
PlayerGameModeChangeEvent
¶
Bases: PlayerEvent
, Cancellable
Called when the GameMode of the player is changed.
PlayerInteractActorEvent
¶
Bases: PlayerEvent
, Cancellable
Represents an event that is called when a player right-clicks an actor.
PlayerInteractEvent
¶
Bases: PlayerEvent
, Cancellable
Represents an event that is called when a player right-clicks a block.
PlayerJoinEvent
¶
Bases: PlayerEvent
Called when a player joins a server
PlayerKickEvent
¶
Bases: PlayerEvent
, Cancellable
Called when a player gets kicked from the server
PlayerLoginEvent
¶
Bases: PlayerEvent
, Cancellable
Called when a player attempts to login in.
PlayerQuitEvent
¶
Bases: PlayerEvent
Called when a player leaves a server.
PlayerRespawnEvent
¶
PlayerTeleportEvent
¶
Bases: PlayerEvent
, Cancellable
Called when a player is teleported from one location to another.
PluginDisableEvent
¶
PluginEnableEvent
¶
ScriptMessageEvent
¶
Bases: ServerEvent
, Cancellable
Called when a message is sent by /scriptevent
command
ServerCommandEvent
¶
ServerListPingEvent
¶
Bases: ServerEvent
, Cancellable
Called when a server ping is coming in.
local_port_v6
property
writable
¶
local_port_v6: int
Get or set the local port of the server for IPv6 support
max_players
property
writable
¶
max_players: int
Gets or sets the maximum number of players allowed.
minecraft_version_network
property
writable
¶
minecraft_version_network: str
Gets or sets the network version of Minecraft that is supported by this server
ServerLoadEvent
¶
ThunderChangeEvent
¶
Bases: WeatherEvent
, Cancellable
Called when the thunder state in a world is changing.
WeatherChangeEvent
¶
Bases: WeatherEvent
, Cancellable
Called when the weather (rain) state in a world is changing.
WeatherEvent
¶
event_handler
¶
event_handler(
func=None,
*,
priority: EventPriority = NORMAL,
ignore_cancelled: bool = False
)