-
Posts
2725 -
Joined
-
Last visited
-
Days Won
40
Everything posted by Ugdhar
-
It's telling you there's a problem with your proxy classes.
-
You're in survival mode right? I know I added a mob tinkering around one time, and it didn't do much because I was in creative mode. After I switched it to SV, the 20 or so mobs I had spawned all bumrushed me at once. . .
-
[1.12.2] Crafting more than one item.[SOLVED]
Ugdhar replied to BallsOfBedrock's topic in Modder Support
Off the top of my head, I'd say check out the recipe for sticks, since it makes 4. -
Yeah, I had this issue too, and it took a few minutes to find the answer. Short version: override drawScreen in your GuiContainer and put a this.renderHoveredToolTip(mouseX, mouseY); in there I tried it in the background and foreground render methods, but neither one worked quite right. I think it was Draco18s that posted the above fix for someone once upon a time that I found while googling.
-
Latest recommended forge version: 1.12.2 - 14.23.0.2491
-
More information is needed, please post in spoiler tags your fml-client-latest.log
-
1.8.9 is old, you should update. There have been a lot of improvements made in newer versions.
-
I believe your biggest problem is likely a lack of java knowledge. You really do need to know at least intermediate java/OOP in order to make mods for Minecraft. Otherwise you will struggle a LOT with the simplest of blocks and items, nevermind making anything actually cool/different/exciting. http://www.minecraftforge.net/forum/topic/49497-1112-is-using-registryevent-this-way-ok/ This post shows how to register items, blocks, and their models. If someone just writes the code for you and/or gives you the complete answer, you will be right back here stuck again unless you have some programming skills. I'm not trying to be mean, just stating what is true. There are a lot of guys on here that have been here a long time, and you won't get a nice answer out of them if you lack even rudimentary java skills, as this forum is not a place to learn how to program.
-
1.7.10 is no longer supported here, you are going to need to update to continue receiving support. Threads for versions that old tend to get locked fairly quickly.
-
1.6.4 is no longer supported here. Also, you made this post already once, were told it's not supported, and the thread was locked. Creating another thread for the same issue you were already told is not supported is likely to get you a warning from a moderator/admin to cut it out and to update if you want help here.
-
That. . .is very weird. I'm at a loss, unless your java's broken and needs to be reinstalled. I really am not sure without having logs to go by.
-
Please post your entire fml-server-latest.log file in spoiler tags (the little eyeball button above where you type your post), or upload it to somewhere like gist.github.com and link to it here.
-
1.7.10 is no longer supported here, you will need to update to a newer version for support.
-
Tinkers Construct not showing in inventory
Ugdhar replied to Samillennium's topic in Support & Bug Reports
Show us fml-server-latest.log -
My 1.7.10 forge won't work and I don't know why!
Ugdhar replied to EJC_508's topic in Support & Bug Reports
You will need to update for support, 1.7.10 is no longer supported here. -
[1.12.2] Strange errors after upgrading from 1.12
Ugdhar replied to DragonFerocity's topic in Modder Support
That says your blocks are being registered twice, not your items. If you look at the end of the initBlocks method: for(Block block : blockList) { event.getRegistry().register(block); } for(Block block : blockList) { event.getRegistry().register(block); } That's why right there, you do that loop twice. -
1.7.10 is no longer supported here. You will need to update for support.
-
Post the whole fml-client-latest.log Make sure you're using the right version of abyssalcraft for the version of minecraft you're using.
-
I just got a bunch of new mods and my game is crashing!!!
Ugdhar replied to MinecraftMadness's topic in Support & Bug Reports
We need the full fml-client-latest.log in your .minecraft/logs folder -
1.7.10 Problems with rendering a tag above name (opengl)
Ugdhar replied to powns's topic in Modder Support
1.7.10 is no longer supported -
[Solved] [1.6.4] Disabling the F3 menu/coordinates
Ugdhar replied to Tinker's topic in Modder Support
This post is over 3 years old, and 1.7.10 is no longer supported here. -
1.7.10 is old and no longer supported, update.
-
[1.7.10] Unable to Spawn particles / play sounds in EventHandler.
Ugdhar replied to anotherhumanity's topic in Modder Support
1.7.10 is really old, and is no longer supported here. You will need to update. -
please post the fml-client-latest.log from your .minecraft/logs folder
-
1.7.10 is no longer supported here, you will need to update to receive help. *edit: Your build.gradle is for 1.7.10, despite the subject line saying 1.12. If people help for 1.12, odds are it will probably not work in 1.7.10 since it is so old.