Event
endstone.event
¶
ActorDeathEvent
¶
ActorEvent
¶
ActorRemoveEvent
¶
ActorSpawnEvent
¶
ActorTeleportEvent
¶
Bases: ActorEvent
Called when a non-player entity is teleported from one location to another.
BlockBreakEvent
¶
Bases: BlockEvent
Called when a block is broken by a player.
BlockEvent
¶
BlockPlaceEvent
¶
Bases: BlockEvent
Called when a block is placed by a player.
BroadcastMessageEvent
¶
Event
¶
Represents an event.
EventPriority
¶
EventPriority(value: int)
Listeners are called in following order: LOWEST -> LOW -> NORMAL -> HIGH -> HIGHEST -> MONITOR
PlayerChatEvent
¶
Bases: PlayerEvent
Called when a player sends a chat message.
PlayerCommandEvent
¶
Bases: PlayerEvent
Called whenever a player runs a command.
PlayerDeathEvent
¶
Bases: ActorDeathEvent
, PlayerEvent
Called when a player dies
PlayerEvent
¶
PlayerInteractActorEvent
¶
Bases: PlayerEvent
Represents an event that is called when a player right-clicks an actor.
PlayerInteractEvent
¶
Bases: PlayerEvent
Represents an event that is called when a player right-clicks a block.
PlayerJoinEvent
¶
PlayerLoginEvent
¶
Bases: PlayerEvent
Called when a player attempts to login in.
PlayerQuitEvent
¶
PlayerTeleportEvent
¶
Bases: PlayerEvent
Called when a player is teleported from one location to another.
PluginDisableEvent
¶
ServerListPingEvent
¶
Bases: Event
Called when a server ping is coming in.
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
¶
WeatherChangeEvent
¶
event_handler
¶
event_handler(
func=None,
*,
priority: EventPriority = EventPriority.NORMAL,
ignore_cancelled: bool = False
)