Everything posted by Ugdhar
- 
	
		
		How do I create a block with different textures on each side
		
		Did you find the client-extra.jar? Look at the json for the crafting table as an example. That's what I would do if I were trying to do what you are doing. What is working/not working? (be specific) If you're getting missing textures (black/purple squares), you should also post logs so it shows what it is looking for.
- 
	
		
		How do I create a block with different textures on each side
		
		There should be a reference to client-extra.jar that's where the json models and stuff are.
- 
	
		
		How do I create a block with different textures on each side
		
		The minecraft wiki has a good breakdown of the model json format: https://minecraft.gamepedia.com/Model#Block_models Also, check the vanilla model files for things with different faces to see how they did it. The vanilla sources are a very good reference, and should be viewable through your IDE.
- 
	
		
		Item texture invisible
		
		Not 100% sure if it matters, but in your model file, where you specify the texture, you have a capital L on layer, and all my model files are all lowercase. You also have the texture looking in exemplemod:items/exemple_item, but I believe it should be exemplemod:item/exemple_item. also, you should always post/read the latest.log, it likely tells you it can't load the texture somewhere.
- 
	
		
		PLEASE, i need help !!! :(
		
		1.12 is no longer supported on this forum due to age. Please update to a modern version to receive support. See the LTS link at the top of every page for more information.
- 
	
		
		Eclipse is not able to run Minecraft
		
		1.12 is no longer supported on this forum due to age. Please update to a modern version to receive support. See the LTS link at the top of every page for more information.
- 
	
		
		[1.15.2] Need help with Entity's Goals
		
		Don't bump after 2 hours, give people some time. In a lot of places, it's really early morning and people are probably still sleeping.
- 
	
		
		[SOLVED] NullPointerException when giving BlockItem
		
		Not what you want to hear, but you honestly should probably be learning basic Java/OOP. Not knowing what a constructor is is a bad thing.
- 
	
		
		Unable To Load Textures [1.14.4]
		
		I believe it should be textures.item package, no s at the end.
- 
	
		
		Help updating my Ore gen to 1.15.2
		
		You should post your entire mod as a github project, it helps people see the big picture. Have you used your IDEs debugger to ensure that this code is being called? I've seen a few threads about OreGen on here, so if you use the forum search you will probably find more information.
- 
	
		
		Forge 1.8.9 stuck at "preparing"
		
		You can, but will not be able to receive support from this website since it is a really really old version. So you can still download it and use it, but if it breaks, you're on your own or will have to look elsewhere for support. The LTS link at the top of every page has more information on which versions will be supported going forward and why.
- 
	
		
		[Solved] [1.14.4] Using RegistryObjects with EntityTypes, but still making spawn eggs?
		
		I haven't tried this using RegistryObject yet, but I believe Cadiboo has a custom spawn egg that takes a Supplier in the constructor in his example mod on github. https://github.com/Cadiboo/Example-Mod/blob/1.15.2/src/main/java/io/github/cadiboo/examplemod/item/ModdedSpawnEggItem.java I haven't messed with it myself, so your mileage may vary, but seems like a good place to start until something proper is done about the spawn egg mess.
- 
	
		
		my CodeChickenLib keeps crashing my minecraft
		
		1.12 is no longer support on this forum due to age. Please update to a modern version to receive support. More information can be found in the LTS link at the top of every page.
- 
	
		
		Need help please
		
		1.12 is no longer support on this forum due to age. Please update to a modern version to receive support. More information can be found in the LTS link at the top of every page.
- 
	
		
		1.15
		
		The log files generated when you run through eclipse are in the run/logs folder within your project folder. If you're using debug, I would guess you'd need to check debug.log to see if your note gets printed. I just tested myself using the latest 1.15.2 build, and it worked fine for me. *edit: Not sure if it matters, but I would change the name of your logger so it is not exactly the same as the class name. Make it all caps or something
- 
	
		
		[1.15.2]
		
		Reference for shapeless recipe json format: https://minecraft.gamepedia.com/Recipe#crafting_shapeless
- 
	
		
		What are some good resources?
		
		Spend time browsing the minecraft sourcecode for things you are interested in trying or how they work. Make good use of google and the search on this forum. I find searching class/method names that I'm working with yields decent results most of the time. Make sure you have a decent grasp on Java, if you are confused by the basics (or even advanced features) of the language, stop to go back and figure them out.
- 
	
		
		[1.15.2] Why i am getting this error?
		
		Make sure you read the whole log
- 
	
		
		Forge 1.15.2-31.1.14 Crash at launch
		
		I don't use optifine, I would check their website for instructions. My best guess, not using it at all, would be run its installer again and look for an uninstall option. edit: and I would double check [C:\Users\hidve\AppData\Roaming\.minecraft\mods for Optifine, since it says that's where it is.
- 
	
		
		[1.14.4 / 1.15.2] Please make PotionBrewing.addMix  public.
		
		Brewing recipes can't be made with json at this time. This is a known/open issue, hopefully it gets worked on so ugly hacks don't have to be used to add brewing recipes https://github.com/MinecraftForge/MinecraftForge/issues/5814 In the meantime I found this link with some info on getting around it: https://www.minecraftforge.net/forum/topic/73496-1132-alternative-to-potionbrewingaddmix-solved/
- 
	
		
		Forge 1.15.2-31.1.14 Crash at launch
		
		Looks like it is still trying to load Optifine
- 
	
		
		Issues installing Forge
		
		It appears you have the correct file, but you must have java ( use Java 8 ) installed. If you do, try running Jarfix (google will find it for you), as it appears your system associates .jar files with an archive manager rather than the JVM.
- 
	
		
		test post please ignore
		
		I know you said ignore, but if you'd like any feedback/opinions, Intellij Dark looks best/easiest to read IMO (I am using the dark forum theme).
- 
	
		
		Why i cant open the jar file?
		
		Using Eclipse, I had to run the eclipse tasks (from the commandline) twice to get it to let me to view sources, both when originally setting up the project and when updating forge/mappings in build.gradle. Otherwise when trying to look up classes and such it would tell me source was not available. No clue why, but like I said, running the tasks once, then opening in eclipse won't let me view sources, close it down, rerun tasks again, and I can view sources. This was using eclipse 2019-12.
- 
	
		
		Really need help.
		
		Yes, it's part of the minecraft sourcecode that is setup as part of a mod development project. I don't know anything about mcreator, so I cannot help with that in any way.
IPS spam blocked by CleanTalk.
									
    
    
								 
				 
					
						