How to convert minimap images for usage in WaypointCreator.
- Start with extracting the minimap images from the client. They are always located in textures/Minimap
- Get https://github.com/Daribon/MapMD5Rename
- Run Md5Renamer.exe in the same directory as md5translate.trs
- All images will now be with correct name and path.
- Delete WMO folder.
- Batch convert the blp images to webp, in the below example I will use IfranView:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| # ------------------------------------------------------------- | |
| # VMaNGOS Linux Installer | |
| # ------------------------------------------------------------- | |
| [[ $EUID -eq 0 ]] || { echo "Error: Run as root (or with sudo)"; exit 1; } | |
| # Get real user home directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Easy VMaNGOS map/DBC/vmap/mmap extractor script | |
| # | |
| set -euo pipefail | |
| # ──────────────────────────────────────────────── | |
| # Helper: Detect build number from WoW.exe | |
| # ──────────────────────────────────────────────── |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal EnableDelayedExpansion | |
| echo. | |
| echo === Easy VMaNGOS Data Extractor === | |
| echo. | |
| set /p "WOW_CLIENT_INPUT=WoW client path: " | |
| :: Sanitize path (remove quotes, single quotes, trailing slashes) |