Started by
Keeygh
on
Topic category: Help with MCreator software
I modeled two mobs in blockbench, one worked fine, but the other is not exported to mcreator! says the name is already in use no matter what I do.
"Model alredy exists, Java model with the name Model_Custom alredy exist! Make sure that the model name in code is different and important it again" :/
Open your .java file with a text editor and change the name at the first like that says "package model.[XYZ1]" or "package [XYZ2]". You also have to change it after the imports are done at "public class [XYZ] extends ModelBase". There is also another place where you will have to change it. It comes after all the cubes are initialised, it will look like "public [XYZ2]()". In all cases [XYZ1] or [XYZ2] could be what you named it while exporting it, it could be Model_Custom. Change this and import it again. This should work. Make sure that [XYZ1] and [XYZ2] are different from the first model.