Everything posted by Parker8283
-
java.lang.NoSuchFieldError: PLANT
Natura and Thaumcraft apparently aren't working together in your world.
-
Forge Gradle World Creation Error
Posting every few minutes will not get people to help you, just to get mad at you. The source is in Referenced Libraries. It appears that your run configurations are wrong, or you set up your workspace the wrong way. What are your run configurations? What tutorial did you follow?
-
[Unsolved] Error when importing a Gradle project [1.7.2]
Copy a fresh build.gradle that's bundled with Forge and try running with that.
-
[1.7.2-1060] Mod Logos Not Loading
This has been a bug since the beginning of 1.7, but the logos have not been loading from the mcmod.info, including MCP and Forge.
-
[Unsolved] Error when importing a Gradle project [1.7.2]
Your build.gradle is screwed up. Post it.
-
[Unsolved] Error when importing a Gradle project [1.7.2]
BECAUSE YOU DON'T IMPORT A GRADLE PROJECT! If you just run the basic setup commands and just import a JAVA project, it should be fine.
-
[1.7.2] Block Harvesting Help
I usually do it as so: public static void setBlockHarvestLevels() { exampleBlock.setHarvestLevel("pickaxe", 2); } This usually gets called during preInit.
-
[Solved][1.7.2]Packets problem
http://www.minecraftforge.net/wiki/Tutorials/Packet_Handling What I used.
-
Block properties
Yes; If you knew Basic Java, you would know that, in your situation, those do the exact same thing.
-
Custom Biome (for 1.7)
- Achievement Problem
If you actually read the stacktrace, It's caused by the NullPointerException with an ItemStack.- [1.6.4] Gradle Forge setup failing at :doForgePatches
It's added when you run gradlew for the first time. Did you run (assuming you're on Windows): gradlew.bat setupDecompWorkspace- [1.7.2] Can't find Modded Biome
Have patience; It took me a while as well. Just create new world after new world and fly for a long time. It takes a while.- Texture Register Error
registerBlockIcons And if you put the Override annotation over all methods you ever override from Minecraft, you would've figured that out.- Can't set custom Item or Block IDs? (1.7.2)
As long as you aren't relying on IDs anywhere in your code (like Block.getIdFromBlock() or Item.getIdFromItem()), everything will work perfectly fine, as both Minecraft and Forge have moved off of complete Data Value reliance.- Errors With Running Minecraft on eclipse IDE For java EE
Also, do you NEED Java Enterprise Edition? That comes with a bunch of crap that you'll never use with Minecraft Modding.- Custom Biome (for 1.7)
Most of the 1.6 tutorials work to an extent. You can follow them for making the BiomeGen class for your biome, but the way you register it is different. Some threads on here have covered 1.7 biome registration, so look them up.- [1.7.2] Can't find Modded Biome
Way I got mine working (this is all in my @Mod file): public static final BiomeGenBase example = new BiomeGenExample().setBiomeName("Example Biome"); @EventHandler public void preInit(FMLPreInitializationEvent event) { BiomeDictionary.registerBiomeType(example, Type.FOREST); BiomeManager.addSpawnBiome(example); } My ID is coded into the super call in the BiomeGenExample file.- [1.6.4] Gradle Forge setup failing at :doForgePatches
If you're using Java 8, don't. Otherwise, I would say delete your .gradle folder in your user directory (/Users/xxx/.gradle), and try everything again.- [1.6.4] Crafting advice for me
Look in the vanilla Minecraft code. It's in a file called CraftingManager.- GL_ERROR Invalid framebuffer operation
1057 has always been buggy and Lex and the team know it. That's why if you look at 1.7.2-Latest, it's at 1056.- [1.7] Saving Blocks and Items to NBT
We want to save the Block or Item that the variable holds, and it's not an ItemStack. These Tile Entities are also not IInventories or ISidedInventories.- [1.7] Saving Blocks and Items to NBT
I'm updating a mod where, in 1.6, they saved the Data Value of blocks inside their contraptions' Tile Entity classes. Obviously I want to update that to 1.7 and remove the reliance on Data Values. The problem is that everything I try doesn't work. Does someone know how to do this?- (SOLVED) I can't view the Minecraft src
Delete you .gradle folder that's in your user directory. (/Users/xxx/.gradle). Re run the setup commands.- Setting up Eclipse environment
What Minecraft Version? What Forge Build? - Achievement Problem
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.