├── .gitignore ├── README.md ├── login.sh ├── overviewer ├── README.md ├── get-minecraft-client-jar.sh ├── insert-google-key.sh ├── install-overviewer.sh └── render-config.py ├── realms-download.sh └── validate.sh /.gitignore: -------------------------------------------------------------------------------- 1 | world.tar.gz 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/README.md -------------------------------------------------------------------------------- /login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/login.sh -------------------------------------------------------------------------------- /overviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/overviewer/README.md -------------------------------------------------------------------------------- /overviewer/get-minecraft-client-jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/overviewer/get-minecraft-client-jar.sh -------------------------------------------------------------------------------- /overviewer/insert-google-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/overviewer/insert-google-key.sh -------------------------------------------------------------------------------- /overviewer/install-overviewer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/overviewer/install-overviewer.sh -------------------------------------------------------------------------------- /overviewer/render-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/overviewer/render-config.py -------------------------------------------------------------------------------- /realms-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/realms-download.sh -------------------------------------------------------------------------------- /validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/air/minecraft-tools/HEAD/validate.sh --------------------------------------------------------------------------------