Everything posted by larsgerrits
-
World Gen issue due to several mods
Looks like Greymerk's Roguelike Dungeons is crashing. Try updating to the latest version.
-
1.6.4/1.6.2 Forge SRC Installation Problem [Read To Understand Why It's 1.6.4!!]
Well, you can just always download the mods from TPPI yourself instead of using the tekkit pack.
-
1.6.4/1.6.2 Forge SRC Installation Problem [Read To Understand Why It's 1.6.4!!]
I am just gonna say it: update. If you want to add your mod to your TPPI, update your TPPI and make a mod for that version.
-
[1.7.10] Need help with spawning custom lakes of fluid
You can just use the vanilla one: new WorldGenLakes(YOUR_BLOCK).generate(world,random,x,y,z)
-
[Outdated code] what's the 1.7 version of this?
As you seem to have copied the code from EntityEnderPearl , I looked in the onImpact method in EntityEnderPearl , and I found this: if (entityplayermp.playerNetServerHandler.func_147362_b().isChannelOpen() && entityplayermp.worldObj == this.worldObj)
-
[1.7.10] [Solved]Get held item in client-sided event
What makes you think you can't get the held item client-side? You can get the player using Minecraft.getMinecraft().thePlayer and you can get the held item from the player. You just can't modify the held item on the client-side.
-
[1.8]Entities not spawning with the exact same data
You need to use readFromNBT on the entity, instead of writeToNBT .
-
[1.7.10] Tile Entity missing mapping
You need to register your TileEntity using GameRegistry.registerTileEntity .
-
Java 8 Errors
Errors? I don't see any errors? Without the logs, the don't know the issue and can't help you.
-
[1.8]Mob RenderProblem
No, we are not mean, we are telling you to learn basic Java which you clearly don't know,
-
[1.8]Mob RenderProblem
1) It is causing a infinite loop because you are calling a method from the method itself. 2) This board is for Minecraft Modding, not a Java school. From the board description:
-
[1.7.10]Is draw screen called every tick?
No you draw in drawScreen . You need to count ticks in updateScreen and every # ticks, increment the animation and render your animation in drawScreen .
-
HarvestDropsEvent isnt working...?
From HarvestDropsEvent : public final EntityPlayer harvester; // May be null for non-player harvesting such as explosions or machines
-
[1.8] For Each Item add a crafting recipe.
Well, where do you add the recipes?
-
[Solved][1.7.10] Stepping sound question
Try overriding the getSoundVolume method in your entity class, by default it return 1.0F, so lower that for a lower sound volume.
-
[1.7.10]<Unsolved>Basic movement of items in custom container destroys item
Does TileEntityTrialInventory#isUseableByPlayer(EntityPlayer) return true?
-
[Custom Biomes][Custom Dimension] Multiple Biomes how?
Dude, this thread is 2 years old... Make your own if you need help.
-
[1.7.10] Make Entity Render from really far away
How big is "REALLY" big? Maybe you can post an image or give us the bounding box size?
-
[1.8] [SOLVED] Generate Blocks Over Already Generated Chunks
He want to generate a structure in an already made world. @OP, maybe you can use the WorldEvent.Load event to generate the structure in the world, and have a boolean to check if it was already generated in the world.
-
MOVED: [1.7.10] Biomes O'Plenty Crash
This topic has been moved to Minecraft General. [iurl]http://www.minecraftforge.net/forum/index.php?topic=28151.0[/iurl]
-
Replicate Grass Block Colour Overlay
You need to return true in shouldRender3DInInventory in your renderer, and actually do something in the renderInventoryBlock method.
-
[1.8] Forge Mod Making, Crash(NullPointerException)
Update to the latest version by changing the version number in your build.gradle.
-
[1.7.10] Still Cannot Create Liquids!
We need to code to help you. And tell us what the problem is.
-
[1.7.10]How would I check if the players inventory is open?
You need to register it on the FML bus: FMLCommonHandler.instance().bus() .
-
[HELP!] Creating A New Liquid 1.7.10
Topic locked! This is your third thread in 24h (wtf are you thinking!?) for this 'issue' (currently your issue is not knowing how to google!).