Jump to content

Elite_Forges

Members
  • Posts

    31
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    United States
  • Personal Text
    Physician, heal thyself.

Elite_Forges's Achievements

Tree Puncher

Tree Puncher (2/8)

2

Reputation

  1. Okay. Thanks for the pointer. Is there anything wrong with my recipe JSON?
  2. My apologizes, I mistakenly believed that forge stopped hosting the 1.12.x docs. But I just found them here. Sorry, I'll review that now. Sometimes there's something pretty stupid in the way like that.
  3. Hello, thank you for your time. For some context, I'm currently working on the recipes for my mod, and so far I'm doing pretty good figuring out how the newer versions of forge work (I'm coming from all the way back in 1.7.10). At first everything seemed far too tedious, but I've come to recognize that the forge team is doing very well with their work. The new systems seem to be much better than the old. There is something I'm struggling to understand however. And would greatly appreciate some help with learning. My goal is to simply register some of my items to the Ore Dictionary. It's come to my attention that the way this is done has greatly changed since 1.7.10. While the documentation is fairly detailed, I'm feeling a little overwhelmed. I looked all over the internet for hours trying to solve this issue on my own. Could you please help me to understand what the best way to register ores to the dictionary is? Please forgive me if this isn't the correct way to register ores anymore. But this is what I have. Upon running the game, there are no apparent errors in the console indicating that the registration is invalid. I've put together a test recipe to see if things worked out or not. Here is the JSON for that. Again, thank you for your time and patience. Just in case you want to take a deeper look, here's my Github repository. You may notice I'm working with a 1.12.2 environment. And that would be correct. However, unless something important has changed between then and 1.14/15, please do not tell me to update to receive support.
  4. Wow, you are a life saver. I knew it was probably something stupid like that, turns out if you move it to Init it does work. Thanks!
  5. I've tried it as itemstack just now OreDictionary.registerOre("oreCopper", new ItemStack(oreCopper, 1, 0)); Still crashed for some reason.. Not sure what's going on. Here's the new crash report if you want it: http://pastebin.com/ZsrZpmzw EDIT: To make things even weirder I've run one of my older 1.6.4 mods with oredictionary and it works just fine. OreDictionary.registerOre("nuggetIron", new ItemStack(ironNugget));
  6. My Main mod class: http://pastebin.com/KkGtV8ae My Stuff.class: http://pastebin.com/MtmWSKVQ ^ Ore Dictionary is at the bottom
  7. I've tried numerous times to register my items / blocks into the Ore Dictionary with no success. My game just crashes when I run it. Just to get this cleared up right away, isn't this the code you use to add an ore to the dictionary? OreDictionary.registerOre("oreCopper", oreCopper); Crash Report:
  8. Thank you!! That's all I needed to know! I've got it working, sorry for the trouble guys! For anybody reading this in the future, set the encoding for the en_US.lang file to UTF-8 then use the Section Symbol ( § ) followed by a color code to change the color. An example of this is " §aCopper Ore", that will result in lime green. To set the encoding of the file (In eclipse) right-click it in the package explorer and go to "Properties" and you can find it there. Color Codes: http://minecraft.gamepedia.com/Formatting_codes
  9. Could you give me an example of how I'd write it in the en_US.lang? I've tried a number of different things. I've only ever used the \u00A7 thing in servers..
  10. Ok so My en_US.lang copper ore looks like tile.oreCopper.name=§aCopper Ore§r And I've had the block name set to .setBlockName(oreCopper); And It's being registered into the game with GameRegistry.registerBlock(Stuff.oreCopper, "oreCopper"); I don't get why it isn't working. Unless I'm missing something I've done what you did. Yet shows up like this in-game.
  11. I tried that as you were replying, no luck there either.
  12. I've tried that and it didn't work. Am I doing something wrong? tile.copperOre.name=&aCopper Ore in en_US.lang?
  13. I haven't been able to find a single way to change the color of the in-game name (The text you see when you hover over an item or block). I use the en_US.lang way of naming items since that's apparently what you have to do these days in 1.7. Can somebody please at least point me to the right direction with what I should do?
  14. Ah I see. amm is armor movement mod, thanks LexManos
  15. I am having a problem I need fixed as soon as possible. I am the owner of a mod pack called "Gnomey Pack Revived" on technic. I recently updated the pack, and now I cannot join the server. I'm using all the proper configs, mods, and settings yet everyone crashes when they join, including me. Client Crash Report: https://gist.github.com/EliteForges/f9bdf35777b257967bd9
×
×
  • Create New...

Important Information

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