An UI wrapper for Overviewer that handles everything from map configuration to actually running it, all in an Electron application that runs on Windows and MacOS (Linux soon™)
- Download from Releases tab
- Releases that start with
v
are finished releases - Releases that start with
b
are beta releases
- Releases that start with
- Extract zip
- Run the
.exe
(for windows) or.app
(for mac)
- If you use MacOS, make sure to have Python 3 installed
- There are some experimental installers for windows (
Setup.exe
) - These are meant for a future release where Squirrel autoUpdate will be implemented and I have the money for a Windows Authenticode certificate
- Make sure you have NodeJS 10.5 or later installed. If you use MacOS, make sure to have Python 3 installed
- Clone project
- Run
npm i
to install everything needed (Don't worry, it won't take long) - Run
npm start
to run the tool
- Install an Overviewer version by expanding
Overviewer
and choosing whichever version you want (latest version is at the top) - Go to
Choose Folder
underMinecraft Worlds
and choose the folder containing the minecraft world(s) - Go to
Choose Folder
underOverviewer Maps
and choose the folder to place finished map files - When ready, click one of the
Render
buttons underRender Progress
Render Maps
will render the maps as normalRender POIs
will render the points of interest. This will not render the map (you still need to clickRender Map
)Update web assets
updates web assets, including custom assets, without starting a render. This won’t update overviewerConfig.js, but will recreate overviewer.js. This is almost never needed- If you run more than 1 render at a time (ex: map and pois at same time) the UI might glitch out. But each render runs independantly and nothing bad actually happens. UI should fix itself too once last render finishes.
TheComing SoonGlobal
tab contains the following render settings- Texture pack
- Changelist (output every file chagne to a txt file)
- Option to display render progress on map (
JSObserver
) - Cave Shading (Enable color based depth shading for cave renderes)
- Image Format (png, jpg, or webp) and specific settings to those including compression
TheComing Soon: follPOI
tab will let you create your own POIs- The
Logs
tab contains detailed progress info and render progress
- A scrollable list of all the minecraft worlds detected appears on the left sidebar under
Worlds
- By default everything is rendered on every world detected
- The text in the brackets is the world shortname. This name is made up by the first letter or number of every word in the world name. Make sure that no other world has the same shortname as it is used internally and will probably lead to problems
- The name after it is your world name and is what will be seen as on the map
- The compasses on the right side are so you can choose what direction to render the map in. You can choose any combination of them as long as at least one is selected
- More coming soon!
As of right now, there is no customization of them besides choosing to render or not render themComming Soon!- For reference, these POIs will render:
- Signs
def signIcons(poi): if poi["id"] == "Sign" or poi["id"] == "minecraft:sign": return "\n".join([poi["Text1"], poi["Text2"], poi["Text3"], poi["Text4"]])
- Signs (in cave renders)
def caveSignIcons(poi): if poi["id"] == "Sign" or poi["id"] == "minecraft:sign": if poi["z"] <= 128: return "\n".join([poi["Text1"], poi["Text2"], poi["Text3"], poi["Text4"]])
- Chests
def chestIcons(poi): if poi["id"] == "Chest" or poi["id"] == "minecraft:chest": if not "Items" in poi: return "Chest with items" else: return "Chest with %d items" % len(poi["Items"])
- Chests (in cave renders)
def caveChestIcons(poi): if poi["id"] == "Chest" or poi["id"] == "minecraft:chest": if poi["z"] <= 128: if not "Items" in poi: return "Chest with items" else: return "Chest with %d items" % len(poi["Items"])
- Player Icons
def playerIcons(poi): if poi["id"] == "Player": poi['icon'] = "https://overviewer.org/avatar/%s" % poi['EntityId'] info = "[%s] \n %s \n" % (poi["id"], poi["EntityId"]) info += "Health: %i\tFood: %i \n" % (poi["Health"], poi["foodLevel"]) item_sum = 0 for item in poi["Inventory"]: item_sum += item["Count"] info += "%i items" % item_sum return info elif poi["id"] == "PlayerSpawn": poi['icon'] = "bed.png" return "[%s] \n %s \n" % (poi["id"], poi["EntityId"])
- Player Icons (in cave renders)
def cavePlayerIcons(poi): if poi["id"] == "Player": if poi["z"] <= 128: poi['icon'] = "https://overviewer.org/avatar/%s" % poi['EntityId'] info = "[%s] \n %s \n" % (poi["id"], poi["EntityId"]) info += "Health: %i\tFood: %i \n" % (poi["Health"], poi["foodLevel"]) item_sum = 0 for item in poi["Inventory"]: item_sum += item["Count"] info += "%i items" % item_sum return info elif poi["id"] == "PlayerSpawn": if poi["z"] <= 128: poi['icon'] = "bed.png" return "[%s] \n %s \n" % (poi["id"], poi["EntityId"])