Moritz Posted June 6, 2013 Posted June 6, 2013 Hello. I have problems with the dictionaries. The problem is i never find a list of the names. and i do not want to decomplie 50 mods to find my name thats kinda ignore me. Thats why i ask does anybody has a list with all liquidNames and Orenames for the easy finding of ores and liquids (i know bad english but i am mad with that.) Answer would be nice Quote
Draco18s Posted June 6, 2013 Posted June 6, 2013 Event handlers. public class EventHookOreRegistration { @ForgeSubscribe public void entityAttacked(OreDictionary.OreRegisterEvent event) { if(event.Name.indexOf("ore") >= 0 || event.Name.indexOf("gem") >= 0) { MapsBase.oreBlocks.add(event.Ore); } } } Quote Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Moritz Posted June 6, 2013 Author Posted June 6, 2013 First of all im still using 1.4.7. Second part i know how to get all ores. But i made my own macerrator and i do not want to get all ores at ones. I want a list of all ores without installing the mods itself. So that i can plan my things. i mean like this function. for(ItemStack ore : OreDictionary.getOres("copperOre")) { if(ore != null) { Macerrator.getRecipes().addRecipe(ore.itemID, ore.getItemDamage(), new ItemStack(Item.copperDust, 2)); } } i mean a list like it was before in 1.0. there was a list of names in the oredictionaryclass. like that: "Most used ares are these: oreCopper, oreTin, oreSilver, uraniumDrop, oreNikolite, and and and" but this is no longer implemented. and it makes people who does not have the connections to other modders very hard to get compatible. Stupid thing to delete that (Small but good) list. Quote
ObsequiousNewt Posted June 6, 2013 Posted June 6, 2013 It was unnecessary. So far as I know there is no comprehensive list of ores. You'll have to make a list from all of the mods. Good luck! If it helps, our mod (SBFP Tech) implements these ores: {"oreThorium","oreFluorite","oreMoS2","oreRutile","oreCinnabar","oreLimonite","orePyrolusite","oreAs"} which are monazite, fluorite, molybdenite, rutile, cinnabar, limonite, pyrolusite, and arsenopyrite respectively. Quote BEWARE OF GOD --- Co-author of Pentachoron Labs' SBFP Tech.
Draco18s Posted June 6, 2013 Posted June 6, 2013 I want a list of all ores without installing the mods itself. So that i can plan my things. I created my own block to test with. It didn't do anything, but I had a block called "Copper Ore" that I used to make sure that the event was firing and that the block ID was getting saved for later use. First of all im still using 1.4.7. Very minor differences between 147 and 151 on Forge's end of things (i.e. the dictionary should work the same on both). Quote Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
ObsequiousNewt Posted June 6, 2013 Posted June 6, 2013 I want a list of all ores without installing the mods itself. So that i can plan my things. I created my own block to test with. It didn't do anything, but I had a block called "Copper Ore" that I used to make sure that the event was firing and that the block ID was getting saved for later use. First of all im still using 1.4.7. Very minor differences between 147 and 151 on Forge's end of things (i.e. the dictionary should work the same on both). He wants a list of names used by mods in general, not a list of names used in the current mod(pack). Quote BEWARE OF GOD --- Co-author of Pentachoron Labs' SBFP Tech.
Moritz Posted June 6, 2013 Author Posted June 6, 2013 He wants a list of names used by mods in general, not a list of names used in the current mod(pack). Thats right i want a list of ores. ForgeForum made a list of Item/BlockIDs why the could not make an ore/liquidDictionary list which everyone can download (like an textdata) and everyone who adds something with an mod can poste it there. (Only ores and liquids). at the moment i read it from Mekanismen and IC2 source. But that does not help really because they do not offer all blocks. ^^" Thats kinda sucks. I asked for the list a view moths ago where i was a noob in modding (now i am making pipes and co). but how good i am at the moment does not really interesst. The only thing i think is important make a ore/liquidDictionary List. Quote
ObsequiousNewt Posted June 7, 2013 Posted June 7, 2013 He wants a list of names used by mods in general, not a list of names used in the current mod(pack). Thats right i want a list of ores. ForgeForum made a list of Item/BlockIDs why the could not make an ore/liquidDictionary list which everyone can download (like an textdata) and everyone who adds something with an mod can poste it there. (Only ores and liquids). at the moment i read it from Mekanismen and IC2 source. But that does not help really because they do not offer all blocks. ^^" Thats kinda sucks. I asked for the list a view moths ago where i was a noob in modding (now i am making pipes and co). but how good i am at the moment does not really interesst. The only thing i think is important make a ore/liquidDictionary List. To be fair, though, that list is unofficial, it does not encompass all mods, and I think it is outdated besides. Perhaps you could start a similar topic, though; I think it would be a good idea. Quote BEWARE OF GOD --- Co-author of Pentachoron Labs' SBFP Tech.
Draco18s Posted June 7, 2013 Posted June 7, 2013 You...are not going to find what you're looking for anywhere. Quote Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
r0schm Posted June 7, 2013 Posted June 7, 2013 Moritz, I don't get your point. As far as I see there's still the OreDictionary with all the functionality. The OreDictionary.getOres(String name) still exists and it does so in Forge for 1.4.7, too. Because you know, how would RP2, IC2, Factorization and Thermal Expansion copper work together if not with the help of the OreDictionary. If you want to achieve something else, please specify your problem. Quote
ObsequiousNewt Posted June 7, 2013 Posted June 7, 2013 You...are not going to find what you're looking for anywhere. Unless someone started an unofficial list of ores like the way cpw started the unofficial block ID list. Heck, I would support that. It could be helpful. Moritz, I don't get your point. As far as I see there's still the OreDictionary with all the functionality. The OreDictionary.getOres(String name) still exists and it does so in Forge for 1.4.7, too. Because you know, how would RP2, IC2, Factorization and Thermal Expansion copper work together if not with the help of the OreDictionary. If you want to achieve something else, please specify your problem. He wants a list of ores used by *all* mods, not just the ones installed. Did you actually read the comments? I have clarified that at least twice. Quote BEWARE OF GOD --- Co-author of Pentachoron Labs' SBFP Tech.
endershadow Posted June 7, 2013 Posted June 7, 2013 I found this link a while ago. I think it might be very useful here. http://www.minecraftforge.net/wiki/Common_Oredict_names Quote
ObsequiousNewt Posted June 7, 2013 Posted June 7, 2013 Well, I've posted a topic just like I'd suggested. http://www.minecraftforge.net/forum/index.php/topic,8959.0.html Quote BEWARE OF GOD --- Co-author of Pentachoron Labs' SBFP Tech.
Moritz Posted June 7, 2013 Author Posted June 7, 2013 Thanks.^^ That will help me and all other people^^. Now i can finish my mod (the recipe part) even faster. Thanks again^^" Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.