Jump to content

Ugdhar

Moderators
  • Posts

    2787
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by Ugdhar

  1. Where are you registering this event on the event bus? What does it do when you run it? Do you ever make it to that inside condition where you're attempting to add the drops? Does the fml-client-latest.log say anything?
  2. I would also not use a # in my modid (I'm not sure, but I would bet special characters are prohibited), and modids need to be all lowercase.
  3. That's just silly. Your log shows us all the mods you're using anyway lol. Anyway, I would hazard a guess that it has something to do with Extra Utilities, since I see it mentioned in the crashlog. Try removing that and seeing what happens.
  4. If you're going to use 1.8, you should use 1.8.9, but really you should update to at least 1.11.2.
  5. You need to update, 1.7.10 is no longer supported.
  6. I believe the problem is the mod Logistics Pipes is for 1.7, not 1.12.2. Remove that mod and try again
  7. Sure just don't create/register an ItemBlock for the block in question. That should do it I believe.
  8. I wouldn't start my modid with numbers. I see you have a proxy setup, but your main mod pre/init methods never call the proxy methods. *edit: Ok, my bad, as I see you're trying to use the registry events. I don't see you registering the subscribed methods to the event bus, or annotating the class with the @Mod.EventBusSubscriber. That is likely your problem. Keep in mind that your main class never calls any proxy methods, so even if you get the events working, any of the preinit/init code will still not ever run.
  9. You need to update, 1.7.10 is no longer supported.
  10. - The odds of someone downloading a random file from the internet is pretty slim. - What will you do when the next thing doesn't work? You'll run out of people willing to fix stuff for you. You need to learn Java, and how to work your programming environment, BEFORE you try to learn to mod. It's not people trying to "tell you how to live your life", it's the rules of this forum, and just plain good advice. Learning Java through modding would be kind of like learning how to swap out an engine in your car with 0 automotive knowledge. . .and still needing to drive it to get to work.
  11. https://minecraft.curseforge.com/projects/biomes-o-plenty Most mods have a home/project page at curseforge.
  12. 1.8.9 will not be updated anymore, since it is old. Also, please use english on this forum, I believe it's in the rules. Thanks.
  13. It's telling you there's a problem with your proxy classes.
  14. 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. . .
  15. Off the top of my head, I'd say check out the recipe for sticks, since it makes 4.
  16. 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.
  17. Latest recommended forge version: 1.12.2 - 14.23.0.2491
  18. More information is needed, please post in spoiler tags your fml-client-latest.log
  19. 1.8.9 is old, you should update. There have been a lot of improvements made in newer versions.
  20. 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.
  21. 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.
  22. 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.
  23. 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.
  24. 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.
  25. 1.7.10 is no longer supported here, you will need to update to a newer version for support.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.