A simple command line tool for merging Tibia maps and dumping them to BMP files.
DOES NOT WORK WITH FLASH CLIENT MAPS (YET).
Features
- Merges multiple sets of maps into one.
- Dumps maps into BMP files.
License
GNU General Public License version 3.0 (GPLv3)Follow Tibia Map Tool
Other Useful Business Software
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
Well, since I send this review for him showing the "bugs" so he could be able to fix the source he stopped working in this project. ----------------------------------- Hi, well since I don't know how to contact you I sent this review. I've found a bug in a line of the loop for: for (fileIter = 0; fileIter != numFiles && files[fileIter] != fileId; ++fileIter); it must be for (fileIter = 0; fileIter <= numFiles && files[fileIter] != fileId; ++fileIter); else numFiles will never start the count and will be always 0. and: #define W 8 /* number of chunks in a map row */ /* because they've added gray island */ /* Application limits */ #define MAX_FILES Z*W*H /* maximum number of .map files in a single directory */ /* OR */ #define MAX_FILES 1152 /* Z*W*H=16*8*9=1152 * / If you wanna help I can try finding bugs and testing your program. I know a little of c and c++ programming. Well, I wish you good luck in your project.