• Dear Guest,

    You're browsing our forum as a Guest meaning you can only see a portion of the forum in read-only mode.
    To view all forum nodes and be able to create threads/posts please register or log-in with your existing account.

    TwinStar team

Improved Models - WiP !

Go for Vote! Please vote which models you want to update.Multiple Choise!


  • Total voters
    43
  • Poll closed .
If you download a bash version for windows, it should work. Technically, if you know Java, you can also just jm2converter's main class, read a File (java class) array of all files in the current folder and have them converted by it easily within seconds.

Edit: I saw the main class just requires the path to a file. So from what I understand from looking at it fairly quickly is that you could move the current main method to another one that takes a file path (instead of one from the console directly).
Change the main method to create a file array for the current folder. Iterate it and pass the absolute path for each file to the new method.
 
Last edited:
I think you are working on a windows machine. Not sure this works for whole folders like it does in mac/linux to mark all files with a specific ending usind "*":

Code:
"X:\Program Files\World of Warcraft 1.12.1\model  editing\jm2converter\input\*.m2" -out "X:\Program Files\World of  Warcraft 1.12.1\model editing\jm2converter\output\*.m2" -cl
pause

or

Code:
"X:\Program Files\World of Warcraft 1.12.1\model  editing\jm2converter\input\*.m2" -out "X:\Program Files\World of  Warcraft 1.12.1\model editing\jm2converter\output\" -cl
pause

if you dont have to specify the exact name on output.

At least this kind of wildcard works for quite a few commands in mac/linux.

Thanks for the tips! Yes I'm using Windows 7 on my desktop PC, and I tried what you suggested but it didn't work. I guess I'll give it a try with my Kali Linx laptop :cool2:

If you download a bash version for windows, it should work. Technically, if you know Java, you can also just jm2converter's main class, read a File (java class) array of all files in the current folder and have them converted by it easily within seconds.

Edit: I saw the main class just requires the path to a file. So from what I understand from looking at it fairly quickly is that you could move the current main method to another one that takes a file path (instead of one from the console directly).
Change the main method to create a file array for the current folder. Iterate it and pass the absolute path for each file to the new method.

Thanks you too for the advice! I wish I was a programmer, but I don't really have the knowledge to do such thing :wacko:
 
I tried it on Linux but didn't work... but I think I've found a good compromise. I made a batch like this:

Code:
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Cloth_Holiday_Christmas_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Cloth_Holiday_Christmas_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_AhnQiraj_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_AhnQiraj_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_DungeonDruid_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_DungeonDruid_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_PVPHorde_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_PVPHorde_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_leather_RaidDruid_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_leather_RaidDruid_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_RaidDruid_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_RaidDruid_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_RaidDruid_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_RaidDruid_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_RaidRogue_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_RaidRogue_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_RaidRogue_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_RaidRogue_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Leather_RaidRogue_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Leather_RaidRogue_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_AhnQiraj_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_AhnQiraj_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_DungeonHunter_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_DungeonHunter_A_01_BeF.m2" -cl

java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_DungeonShaman_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_DungeonShaman_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_PVPAlliance_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_PVPAlliance_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_PVPHorde_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_PVPHorde_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_RaidHunter_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_RaidHunter_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_RaidHunter_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_RaidHunter_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_RaidHunter_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_RaidHunter_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_RaidShaman_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_RaidShaman_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mail_RaidShaman_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mail_RaidShaman_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_mask_Halloween_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_mask_Halloween_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Mask_ZulGurub_D_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Mask_ZulGurub_D_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_AhnQiraj_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_AhnQiraj_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_DungeonPaladin_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_DungeonPaladin_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_DungeonWarrior_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_DungeonWarrior_A_01_BeF.m2" -cl

java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_RaidPaladin_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_RaidPaladin_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_RaidPaladin_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_RaidPaladin_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_RaidPaladin_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_RaidPaladin_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_RaidWarrior_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_RaidWarrior_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_RaidWarrior_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_RaidWarrior_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Plate_RaidWarrior_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Plate_RaidWarrior_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_AhnQiraj_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_AhnQiraj_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_DungeonMage_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_DungeonMage_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_DungeonPriest_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_DungeonPriest_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_DungeonWarlock_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_DungeonWarlock_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_Holiday_SummerFest_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_Holiday_SummerFest_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_Holiday_SummerFest_A_02_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_Holiday_SummerFest_A_02_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_PVPAlliance_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_PVPAlliance_C_01_BeF.m2" -cl

java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_PVPHorde_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_PVPHorde_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidMage_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidMage_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidMage_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidMage_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidMage_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidMage_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidPriest_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidPriest_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidPriest_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidPriest_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidPriest_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidPriest_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidShaman_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidShaman_C_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidWarlock_A_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidWarlock_A_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidWarlock_B_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidWarlock_B_01_BeF.m2" -cl
java -jar "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\jm2converter.jar" -in "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\input\Helm_Robe_RaidWarlock_C_01_BeF.m2" -out "X:\Program Files\World of Warcraft 1.12.1\model editing\jm2converter\output\Helm_Robe_RaidWarlock_C_01_BeF.m2" -cl
pause

And then I replaced "BeF" (Blood Elf female) with "BeM" (male) automatically with Notepad. It took me about one hour to convert all 222 helms models! :w00t:
 
Last edited:
I found the converter on GitHub. I will try to adjust this process for you when the creator provides me the library needed.

Let see when he answers. :)
 
The library is also on Koward's GitHub. You can package it and compile the converter.
 
please check your inbox lanevegame / Zerocool. Add me on skype so we can test the feature for whole folders.

UPDATE:

oppahansi's version of jM2Converter.jar is done.

folder support added.

read the help message!

Example for classic:

Code:
[B]java -jar jM2Converter.jar -in path/toInputFolder/ -out path/toOutputFolder/ -f -cl[/B]


"/" "\" is required at the end of the paths.

please test and come back to me with feedback or bug reports

http://www.mediafire.com/download/339o8t1vm4bw641/jM2converter.jar
 
Last edited:
please check your inbox lanevegame / Zerocool. Add me on skype so we can test the feature for whole folders.

UPDATE:

oppahansi's version of jM2Converter.jar is done.

folder support added.

read the help message!

Example for classic:

Code:
[B]java -jar jM2Converter.jar -in path/toInputFolder/ -out path/toOutputFolder/ -f -cl[/B]


"/" "\" is required at the end of the paths.

please test and come back to me with feedback or bug reports

http://www.mediafire.com/download/339o8t1vm4bw641/jM2converter.jar

WORKS LIKE A CHARM :wub:
 
If you guys dont min me asking; but there was a mod called "darker nights" or something on this forum. It's gone for som reason, and I would like to have it back! :p
 
If you guys dont min me asking; but there was a mod called "darker nights" or something on this forum. It's gone for som reason, and I would like to have it back! :p

I havent seen so far anything for it here, tho i remember seen it for WotLK 3.3.5a working, not sure for classic version.
 
So i have start to pack the models and as im doing this i made some more additions and corrections.
Here is the new-fixed/updated models:

Update Legion bear form
WoWScrnShot_030516_123910_zps87lk1ltf.jpg


Update Legion cat form
WoWScrnShot_030616_021808_zpses8q54pj.jpg


WoWScrnShot_030616_021003_zps02yxsza6.jpg


Ally update Bear form
WoWScrnShot_030516_123402_zps02sq5t6s.jpg


Ally update Cat form
WoWScrnShot_030516_123423_zpsmliyejax.jpg


Orc New Postbox
WoWScrnShot_030416_104026_zpsils8xcxm.jpg


Tauren New Postbox
WoWScrnShot_030416_115437_zpsrzojes9b.jpg


Night Elves New Postbox
WoWScrnShot_030416_110450_zps34panyix.jpg


Update Wyvern stationary
WoWScrnShot_030416_103724_zpsj8tjwm0y.jpg
 
Wow, i'm quite impressed. These new HD models are awesome!
Thank you for doing this, and i'm looking forward at the future of your new model changes!
Btw is it possible you could use a armored version for Feral tanks that would look totally sick!?
here is a picture = http://media.mmo-champion.com/images/news/2012/june/bear20.jpg

This is just mind blown...

it's me trough Hardgaan xd

Hey Hardgaan, this armored version is from WoD, tho i want to stick as closer to classic version of the game and not change the feel and effect that game presents. The change can be done as i did in earlier post with alliance Legion forms, those was from Artifact stage 1.
 
Could u also make a version of the blood elf patch for humans :wub:

Edit: Nvm. me, just saw the post about it, love you!
 
Last edited:
How's the project coming? :biggrin:

Im working it but slowly since im playing too most of times cause i want to take advantage of the event too. After event finish im gonna push it faster for the Beta release probably. All that time im fixing/adding models for packing reasons.

- - - Updated - - -

I add some new models, im on the move about Epic mounts. In this update i manage to add the new warhorse for the Scourge. Plus i update the Totem model from the new one of Warlords. I would like to tell me guys if interested to change when ever it is possible the Epic mounts. For those who dont know them ill make a new post to vote for them and show them how it is.

Sheep model
WoWScrnShot_030916_005347_zpsv14r3mqm.jpg


New totem model
WoWScrnShot_031216_210820_zpsojyi16qd.jpg


New Warhorse model
WoWScrnShot_031416_091843_zpsnnwztttd.jpg


WoWScrnShot_031416_092314_zpsgby3vpvh.jpg

The white color is replacing the old Purple. Im thinking to edit the texture and change it to purple. I have made many new recolors since the new Legion/Warlords models didnt have the variety that the old had. So i have to edit the texture with Photoshop and create the colors missing.
 
Last edited:
Wow those skeleton warhorses look awesome. Are you going to be swapping the orc wolf models to be the WoD models? Any more progress on the character models? It'll be amazing to see those ported.
 
Last edited:
Wow those skeleton warhorses look awesome. Are you going to be swapping the orc wolf models to be the WoD models? Any more progress on the character models? It'll be amazing to see those ported.

Yeah and like i said im gonna post a vote option for those mounts. Not all can chnage since no models for all exists. I have an alternative but not sure yet.
 
Hello guys your work look awesome cool to see an evolution in vanilla:biggrin:

is there a way to use it on win7/1.12.1 and how i do it?
 
Hello guys your work look awesome cool to see an evolution in vanilla:biggrin:

is there a way to use it on win7/1.12.1 and how i do it?

Uhm not sure what you mean there, this will be for 1.12.1 patch and since many people have Win7 i believe we are ok. I'll release it under patch form in case you asking, im not creating the game from the begging, im modding the game client.
 
Yes i know im already using koward improved models.

That's great and when do you think you will be able to release it?
 
Whenever you release this I will be there to test it out.
This just looks to awesome to miss out.

I was always fan of vanilla gameplay (played on multiple less popular private servers) but I never liked shabby looks of vanilla wow.

With few newly released addons and this project of yours, vanilla wow looks better than ever.
Thanks man, entire vanilla wow community will be in your debt.
 
Unbelievable work, how dose one go about installing this and keeping it updated?

Any plans to do Raid mobs and bosses? Weapons and Gear? Enchanted items?

I'm SO HARD from this thread!!
 
Top Bottom