Everything posted by larsgerrits
-
[1.7.10] Custom Furnac save items only in slot 0 When i restarting minecraf
False. You can write them in one order and read them in a totally different order, and it would still work.
-
Save a part of the world
These are the things that need to be in a GitHub project. If you have these you can simply clone it, run gradlew setupDecompWorkspace and than your IDE stuff and you have it. No more than that.
-
[1.7.10] My custom furnace doesn't save item when i restar minecraft
He is, he just hasn't put the @Override annotation above the method.
-
How can i let a vehicle go up blocks?
The stepHeight value is in the Entity class...
-
How can i let a vehicle go up blocks?
Set the stepHeight value to 1.0F for 1 block.
-
How do you render an IModel? (How to Use Forge B3D Model Loader?)
Judging by your last reply, you do not know how events work. You don't have to create new instances of an Event, but rather listen to the events posted by Forge/FML. Seriously, google it.
-
How do you render an IModel? (How to Use Forge B3D Model Loader?)
You do not know how events work. Google it, there are plenty of tutorials.
-
[1.7.10] Item Pickup Handler
ItemPickupEvent.
-
[1.7.10] Entity Error
ModelRenderer head = ... ModelRenderer horn = ... horn.setRotationPoint(head.rotationPointX,head.rotationPointY,head.rotationPointZ); Also, please stop sending me personal messages when you can ask here on the forums (others can use this information too).
-
[1.7.10] Custom painting
First of all, rename the parameters to something human-readable. It will make it much easier to read and debug code. Second, look at the super classes you extend to make sure you're not missing something.
-
[1.7.10] Entity Error
When using addChild you have to set the child rotation points to the head's rotation points.
-
using a 3-Dimentional char array to represent a multiblock structure pattern
Again, that's because your index value is wrong. You are initially setting the index value to the number of blocks in the structure (213), loop through the structure and increment the index 213 times, which results in a total of 628 blocks.
-
using a 3-Dimentional char array to represent a multiblock structure pattern
Check your index value.
-
[1.7.10] How to render a techne model as a hat on the player
I don't think that matters, as the rendering code would almost be the same.
-
[1.7.10]Sounds?
[lmgtfy=minecraft forge sounds]Google is your friend.[/lmgtfy]
-
[1.8] [Solved] Texturing is very picky
Latest is probaby your best guess for modders, recommended for users. Using the latest version assures you you got the latest additions, as you could've guessed .
-
forge.client.shutdown.internal
Try updating your Forge, it fixed it for me.
-
[1.7.10] How to render a techne model as a hat on the player
I wonder if there's a mod with a GitHub project that does the same thing? (Hint: iChun's Hats mod, it has a GitHub project)
-
[1.8] Getting a worldObj in TileEntity.readFromNBT
Never make a direct reference to a TileEntity over a long period! It can change and you will crash/bug out. Instead, just have a BlockPos variable you save to and read from NBT, and whenever you need to get the TileEntity, use IBlockAccess#getTileEntity() to get it. This makes sure you don't change a TileEntity that doesn't exist anymore.
-
[1.8] Metadata limited to 4 bits - possible alternatives
- [1.8]Question about ResourceLocation
Example: new ResourceLocation("modid:path/to/image/image.png"); That will result in assets/modid/path/to/image/image.png .- Player dismounts miles away from the entities position
Entity movement is different from other Minecraft aspects. Entity movement has to be done on both client and server, instead only on the server. Making the entity moe on both sides resolves the lagging behind issue, and maybe the other ones too.- [1.7.10]GUIScreen Member Functions
I'd say you follow the call hierarchy to see what it does, and look at the Minecraft classes for example implementations.- can't setupDecompWorkspace
Try using the latest mappings, and see if that works. If that doesn't work, it may have to do with your internet connection.- can't setupDecompWorkspace
* Where: Build file 'C:\WORK\mc_work\forge\build.gradle' line: 33 Show your complete build.gradle file, and line 33 of that file. - [1.8]Question about ResourceLocation
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.