https://github.com/minebench/minequery
Query and interact with the server through a socket.
https://github.com/minebench/minequery
Last synced: 10 months ago
JSON representation
Query and interact with the server through a socket.
- Host: GitHub
- URL: https://github.com/minebench/minequery
- Owner: Minebench
- License: gpl-3.0
- Created: 2019-07-14T22:38:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T22:04:27.000Z (about 3 years ago)
- Last Synced: 2025-01-08T10:36:06.131Z (over 1 year ago)
- Language: Java
- Homepage: https://ci.minebench.de/job/Minequery/
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
# Minequery 1.7
Minequery is a server plugin for the Minecraft server proxy BungeeCord and the server mod Bukkit. It creates a small server listening for requests and responds with of the Minecraft server port, how many players are online, and the player list.
## Configuring
There are settings in you should setup in `plugins/Minequery/minequery.properties`
Example:
server-ip=127.0.0.1
`server-ip` is the ip of the bungee proxy listener this query is for.
server-port=25565
`server-port` is the port on which the bungee listener listens on and where users should connect.
minequery-port=25566
`minequery-port` is the port on which the query server runs on.
password=
`password` is the password that is necessary for sending commands to the server. Password protected functions are disabled with an empty password!
logging=true
`logging` enables some more detailed logging of every request to the console.
### Bukkit specific settings
included-worlds=*
`included-worlds` sets the worlds that should be included in the player list. Use commas to separate world names or `*` for all worlds.
hidden-worlds=hidden1,hidden2
`hidden-worlds` sets the worlds that should be hidden in the player list. Use commas to separate world names.
### Bungee specific settings
included-servers=*
`included-servers` sets the servers that should be included in the player list. Use commas to separate server names or `*` for all server.
hidden-servers=hidden1,hidden2
`hidden-servers` sets the servers that should be hidden in the player list. Use commas to separate server names.
## License
Copyright (c) 2011 Vex Software LLC, released under the GPL v3.
Copyright (c) 2018 Minebench.de, released under the GPL v3.