Everything posted by tattyseal
-
RandomTickSpeed Bug in 1.8-8.0.9.1016
Try loading a world up without setting the gamerule, then restarting a few times. Tell us if it still happens. I noticed this with some of my mods.
-
[1.7.2]Assets folder get renamed in the final Jar
The only thing I can think of is your build.gradle is being weird, but I don't see anything wrong with it. If you see anything that you don't have or see anything that looks too different from there, that might be the problem. Beyond that I have no clue. As diesieben07 said. Strange.
-
HQM Book Bug when closing it
Report to Hardcore Questing.
-
[1.7.10] Background of a slot turns into a fish item
Like diesieben07 said, show code. Mainly the container, gui, gui handler and tile. This. ^
-
TESR Model Lag
After working on a 3D game, I should have thought of a render list I will try that. Thanks
-
TESR Model Lag
Yeah, like I said, I need a new way to do it
-
[1.7.10] CompactStorage 1.9
CompactStorage http://hydra-media.cursecdn.com/wow.gamepedia.com/9/93/Curse_round_logo_96x96.png?version=fa54ece471eb197b59c11cb1832b646b[/img] View the recipes here http://hydra-media.cursecdn.com/ftb.gamepedia.com/b/bc/Wiki.png?version=524ae5f0e741aca1213f54e560488a9b[/img] Modpacks Permission does not need to be obtained before using CompactStorage in packs distributed through the FTB Launcher. You cannot put any packs containing my mod past any sites that require the user to wait a time period and look at advertisments (adf.ly, adfoc.us) Please obtain permission before using my mod in a modpack You must remove my mod if I ask, even after permission is obtained.
-
TESR Model Lag
Hello, I am making a mod with a block with 16*16 cubes in a block so 256 cubes in the model, and when I try to render it, it causes the fps to drop the more that are placed, this is caused by the for loop I think. I don't know if there is an alternative to this. Thanks. Also, the cubes have to be individual, because I am going to have a gui, so the user can remove cubes and path redstone down them etc. So I need each cube to be removable Model Code: package com.tattyseal.circuits.client.model; import net.minecraft.client.model.ModelBase; import net.minecraft.client.model.ModelBiped; import net.minecraft.client.model.ModelRenderer; /** * Created by Toby on 04/11/2014. */ public class ModelCircuitBoard extends ModelBase { public ModelRenderer[] etchings; public ModelRenderer base; public ModelCircuitBoard() { etchings = new ModelRenderer[16 * 16 + 1]; int id = 0; for(int x = 0; x < 16; x++) { for(int z = 0; z < 16; z++) { etchings[id] = new ModelRenderer(this, 0, 0); //* Creates a textured box. Args: originX, originY, originZ, width, height, depth, scaleFactor. etchings[id].addBox(x, 0, z, 1, 1, 1, 0.0f); id++; } } } } Renderer Code: package com.tattyseal.circuits.client.renderer; import com.tattyseal.circuits.client.model.ModelCircuitBoard; import net.minecraft.client.model.ModelRenderer; import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; import net.minecraft.tileentity.TileEntity; import org.lwjgl.opengl.GL11; /** * Created by Toby on 04/11/2014. */ public class RenderCircuitBoard extends TileEntitySpecialRenderer { public ModelCircuitBoard model; public RenderCircuitBoard() { this.model = new ModelCircuitBoard(); } @Override public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float scale) { GL11.glDisable(GL11.GL_LIGHTING); GL11.glPushMatrix(); GL11.glTranslated(x, y, z); for(ModelRenderer renderer : model.etchings) { if(renderer != null) renderer.render(0.0625f); } GL11.glPopMatrix(); GL11.glEnable(GL11.GL_LIGHTING); } }
-
Minecraft Crashes When Opening Mods Tab.
I think he is talking about the 'Mods' button on the main menu, I think.
-
Help with VM
Click the 'Edit Profile' button
-
Forge is corrupt crash. (1.7.2)
learn2readlogs
-
Problem while i install forge 1.6.4 version 965
Update, 1.6.4 is no longer supported.
-
Running minecraft in eclipse error
Read the EAQ
-
[1.7.10][SOLVED]Custom fuel handler only registering the first fuel
Don't compare ItemStacks compare the ItemStacks item, itemstack.getItem();
-
What is the material obsidian uses?
this.setHardness(hardness);
-
GUI Entity Rendering
Hello, I am rendering entities in my GUI Class, but when they render they look like this Gui Code:
-
Don't know why my server is crashing.
This should be in Support / Bug Reports. Chat Bubbles is Client Side Only. learn2log
-
[1.7.10]How to make two block high plants
Post your code in gists, we have no clue what you are talking about. learn2grammar
-
[1.7.10]How to make two block high plants
And I also said don't copy the code, write it yourself and learn from my code, and you copied it, thats not how you learn.
-
[1.7.10]How to make two block high plants
I told you to remove the onBlockActivated method
-
[1.7.10]How to make two block high plants
I need to see your code.
-
[1.7.10]How to make two block high plants
https://github.com/tattyseal/Modjam4/blob/master/src/main/java/org/eep/api/BaseDoublePlant.java should help, ignore the methods like onBlockActivated, they are for my mod, and try not to copy code, try to learn from it.
-
[1.7.2] [SOLVED] Item Subtypes not Appearing in Creative Tab
Where do you define the metaNames array?
-
SandStoneItems crash
How did you export it?
-
1.6.4 Problems with textures
We need your code, and the location of your texture.
IPS spam blocked by CleanTalk.