-
Posts
2617 -
Joined
-
Last visited
-
Days Won
37
Everything posted by Ugdhar
-
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.
-
How to correctly remove ExampleMod with Eclipse?
Ugdhar replied to Insane96MCP's topic in Modder Support
Read http://mcforge.readthedocs.io/en/latest/gettingstarted/ It explicitly tells you which files to move to your new project folder (steps 2 and 3) -
[1.12] Battery item shares charge across all instances of item.
Ugdhar replied to 44tim44's topic in Modder Support
First thing I noticed, is you do not need to use the AttachCapabilitiesEvent for a capability that is part of your own item, the initCapabilities method you overrode takes care of that. You would only use that event for attaching to an item that you didn't code yourself (i.e. a Stick or something) I haven't much time atm, so that's all I got for now, I'll look some more when I have more time. -
[1.12] Battery item shares charge across all instances of item.
Ugdhar replied to 44tim44's topic in Modder Support
It would be much easier if you uploaded your entire codebase to github Post all capability related classes otherwise pls (not to mention much harder to read code on here than github as well) -
You should make all your registry names lowercase. You should set the unlocalized name using getRegistyName() after setting the registry name. Also, what version of Minecraft is this for?
-
java.lang .NullPointerException: Unexpected error
Ugdhar replied to namemccom's topic in Modder Support
If you're making a mod, post your code. You should also update from 1.8.9, it's getting old. If you're trying to use mods, one of them is a broken example mod. -
[1.12] Battery item shares charge across all instances of item.
Ugdhar replied to 44tim44's topic in Modder Support
I would say you could set those inside your item class if you wanted if they're the same for all batteries and wouldn't change per battery -
You will likely get more help if you post your code on github instead of in a zip file. Not to mention version control is cool
-
[1.12] Battery item shares charge across all instances of item.
Ugdhar replied to 44tim44's topic in Modder Support
Items (like Blocks) are singletons, so there is only 1 instance of your Item class being used for every item of that kind in the game. That's likely why all your batteries are sharing their charge. If you wish to have an independent value for your item, it either needs to be stored in Metadata (limited amount of storage, I forget how much), or you will need to use capabilities. Just search this forum for "item metadata" or "item capabilities" and you should find something to get you started. There is info on both of these in the forge docs as well. *edit: Here's a link to a capabilities tutorial that I believe is helpful: https://www.planetminecraft.com/blog/forge-tutorial-capability-system/