It will replace the current mmaps_generator in a not-so-far future.
Hello everybody!
Recently i compiled a core but when the procedure its over the exe , bat and etc files in my “src/tools” folder are missing.
I am using:
[ul][li]TrinityCore rev. 2012-09-24 13:32:10 -0400 (1b2a010a70ca)[/li]
[/ul]
My C:Trinitysrctools
[ul]
[li]map_extractor[/li]
[li]vmap4_assembler[/li]
[li]vmap4_extractor[/li]
[/ul]
folders are containing files like the shown on this screenshot.
I have “checked” the “tools” check box in Cmake so i can’t udnerstand why after compilation there aren’t any compiled extractors.
Give me guide on how to compile the extractors or somthing like that i just need help to begin my training and studies in coding and etc.
Why would they be in the source folder? Did you follow the wiki? I don’t think so because the wiki explains how to make the .bat file.
BuildbinRelease is the correct folder for the compiled tools and extractors.
They just don’t exist.I used Windows search to find them but with no luck…
Sounds like you checked the box in cmake, but didn’t re-run the “configure” twice, then click “generate”, then… recompile with the tool you are using (Visual Studio). THat would be the only reason why the tools are not compiled, and like Zaranthos stated if you could find the worldserver and authserver binaries that is also where the tools will be dumped.
try this:
- open CMake ( i use v.2.8.9 32x )- File → Delete Cache
- Where is the source code → path to your sorcecode
( /src, /sql, /cmake, Readme … )
- Where to build the binaries → path for your build dir.
like
E:/development/WorldOfWarcraft/335a/TrinityCore ← (sorce)
and
E:/development/WorldOfWarcraft/335a/TrinityCoreBuild ← (build)
- click “Configure”
- check → SCRIPTS, SERVER, TOOLS, USE_COREPCH, USE_MYSQL_SOURCES und USE_SCRIPTPCH
- click “Configure”
- “Generate”
now navigate to your build, compile it and do not use “Debug” change it to “Release”.
BuildbinRelease ← there now your data
Yes i can’t belive i was so blind…so much days i was trying to slove this problem and it turned out it was so simple…thanks you guys for opening my eyes /emoticons/default_smile.png
— Canned message start —
It appears the issue in the original post was solved, so this thread shall be closed.
Should you encounter any other difficulties, please open a new thread.
— Canned message end —
Hello guy’s,
i need a working Map Extractor for TC 4.3.4 15595 (NOT 4.0.6)…
Can anyone Help me ? The Extractor Tool is not Working
The tools work, but only if you have a full client.
I have built the solution in release mode and attempted to use the maps and vmaps extractors in the world of warcraft directory.
The map extractor works fine, but the vmaps extractor, a file called “vmap4extractor.exe” is crashing on startup with the following image:
Would anyone know a solution to this problem?
My wow client version is 4.3.4 (15595).
EDIT: seems the problem is vmaps extractors do not support 4.3.4 yet.
They do support it
Is it a problem with my client?
Because i am not having the same problem with the mangos 4.3.4 extractors.
Damnit US and your copyright problems. I wish a link to the 15595 vmaps and maps be made available but hidden so it solves both our problem and the communities problem.
Its not like you guys have never pirated before.
We don’t pirate things, however, nor we nor Blizzard can control the entire internet /emoticons/default_wink.png
Note: Search for a torrent in thepiratebay
I’m using the latest version of the 4.3.4 emulator. Anyone can help me or tell me where I have to run the file mapextractor, vmap4extractor, etc.
Thanks
Under “Help and Support”, choose your OS and then scroll down to “Setting Up The Server”.
I made it to the ‘Extracting DBC/MAPS/VMAPS’ section of the how-to wikki without any problems whatsoever. I copied the mapextractor.exe, vmap4extractor.exe, and vmap4assembler.exe from my Build/bin/Release folder into my WoW root folder, and created the makevmaps_simple.bat batch file as the wikki states.
Running the mapextractor.exe (even as admin) makes the cmd window open biefly and close again. DBC and maps folders do not show up anywhere. Running the batch file gives me this:
C:Windowssystem32>vmap4extractor.exe’vmap4extractor.exe’ is not recognized as an internal or external command, operable program or batch file.
C:Windowssystem32>md vmaps
C:Windowssystem32>vmap4assembler.exe Building vmaps
‘vmap4assembler.exe’ is not recognized as an internal or external command, operable program or batch file.
C:Windowssystem32>pause
Press any key to continue. . .
I’m guessing this is why the worldsever.exe does not run properly for me, as described in this thread: http://www.trinityco…rver#entry48055 (pops up for a second then disappears), even though the authserver.exe is running with no issues.
I’ve even tried to recomplie it again, with the same results. Any ideas?
Try adding the path of the files.
I’m not sure what you mean. I copied the specified files from C:BuildbinRelease directly into the root folder of my 3.3.5a client (C:Programs Files3.3.5a).
The command you posted is trying to run them from “System32”
C:Windowssystem32>vmap4extractor.exe
Unless you put them there (but then they won’t find your MPQ files) or muck around with your envrionment variables, it won’t find them.
Try this version of the BAT file:
REM Set directory to current directory
@set base_dir=%~dp0
REM Variable base_dir should already have a backslash at the end but if you get an error
REM add one between the second % and the exe name
%base_dir%vmap4extractor.exe
md %base_dir%md vmaps
%base_dir%vmap4assembler.exe Building vmaps
When you double-click to run the BAT file it should find them properly.