-
Notifications
You must be signed in to change notification settings - Fork 0
events
Fired when a server is starting.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that is starting |
None : Nothing
Fired after a server has started.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that has started |
None : Nothing
Fired when a server is stopping.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that is stopping |
None : Nothing
Fired after a server has stopped.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that has stopped |
None : Nothing
Fired when a server has crashed.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that has crashed |
None : Nothing
Request to start a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server to start |
None : Nothing
Request to stop a server. The emmitter will wait for the server to stop before returning.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server to stop |
bool : True if the server was stopped successfully, False otherwise
Request to restart a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server to restart |
None : Nothing
Request to create a new server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server to create |
| server_type | str |
003 | the type of the server to create |
| server_path | str |
004 | the path where the server will be created |
| autostart | bool |
005 | whether the server should autostart |
| mc_version | Version |
006 | the Minecraft version for the server |
| modloader_version | Version |
007 | the modloader version (if not vanilla) |
| ram | int |
008 | the amount of RAM to allocate |
None : Nothing
Request to delete a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server to delete |
None : Nothing
Request to rename a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the current name of the server |
| new_name | str |
003 | the new name for the server |
None : Nothing
Fired after a server has been created.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that was created |
| server_type | str |
003 | the type of the server |
| server_path | str |
004 | the path where the server was created |
| autostart | bool |
005 | whether the server should autostart |
| mc_version | Version |
006 | the Minecraft version for the server |
| modloader_version | Version |
007 | the modloader version (if not vanilla) |
| ram | int |
008 | the amount of RAM allocated |
None : Nothing
Fired after a server has been deleted.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server that was deleted |
None : Nothing
Fired after a server has been renamed.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the previous name of the server |
| new_name | str |
003 | the new name of the server |
None : Nothing
Request a list of all servers.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
List[Dict[str, Any]] : A list of dictionaries, each containing server information
Request to ping a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server to ping |
str : Returns the server's status as a string: "online", "offline", or "starting".
Request the world seed of a server. Returns the seed as a string.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
str : The world seed as a string
Request detailed information about a server. Returns a dictionary containing server information.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
Dict[str, Any] : A dictionary containing server information
Fired when a server is being created.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server being created |
| server_type | str |
003 | the type of the server |
| server_path | str |
004 | the path where the server will be created |
| autostart | bool |
005 | whether the server should autostart |
| mc_version | Version |
006 | the Minecraft version for the server |
| modloader_version | Version |
007 | the modloader version (if not vanilla) |
| ram | int |
008 | the amount of RAM to allocate |
None : Nothing
Request the time a server was started. Returns a datetime object representing the start time.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
datetime : The datetime object representing the server's start time
Fired when a console message is received from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| from | str |
003 | the sender of the message |
| message | str |
004 | the message content |
None : Nothing
Fired when a log message is received from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| content | str |
003 | the log content |
None : Nothing
Request to send a message to a server's console.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| _from | str |
003 | the sender of the message |
| message | str |
004 | the message content |
None : Nothing
Request to send a command to a server's console.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| command | str |
003 | the command to send |
None : Nothing
Fired when a player joins a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player who joined |
None : Nothing
Fired when a player leaves a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player who left |
None : Nothing
Fired when a player is kicked from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player who was kicked |
None : Nothing
Fired when a player is banned from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player who was banned |
None : Nothing
Fired when a player is pardoned (unbanned) from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player who was pardoned |
None : Nothing
Request to kick a player from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player to kick |
| reason | str |
004 | the reason for kicking the player |
None : Nothing
Request to ban a player from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player to ban |
| reason | str |
004 | the reason for banning the player |
None : Nothing
Request to pardon (unban) a player from a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
| player_name | str |
003 | the name of the player to pardon |
None : Nothing
Request a list of all players currently online on a server.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| server_name | str |
002 | the name of the server |
list[str] : the list of online players
Request a list of all available Minecraft versions.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
list[Version] : A list of available Minecraft versions
Request a list of all available Forge versions for a specific Minecraft version.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
| mc_version | Version |
002 | the Minecraft version |
Dict[Version, Dict[str, Any]] : A list of dictionaries, each containing one Forge version and information about it
Request a list of all available Minecraft directories.
| Name | Type | ID | Description |
|---|---|---|---|
| timestamp | datetime |
001 | the exact time the message was sent |
list[str] : A list of available Minecraft directories, set in the config file
Navigation