
Bantasaurusrex
Members-
Posts
37 -
Joined
-
Last visited
Everything posted by Bantasaurusrex
-
[1.7.2] how to disable mob water jumping? [Solved]
Bantasaurusrex replied to thomassu's topic in Modder Support
This boolean is called when the mob jumps then it sets the yAxis motion, so when your mob is in water it jumps then you set isJumping to false, saying that your mob never jumps so it doesn't float. set it like vanilla does not to false. -
[Unsolved] "Already tesselating!" crash with custom block model
Bantasaurusrex replied to bdkuhman's topic in Modder Support
You forgot to put in GL11.glPushMatrix() and GL11.glPopMatrix() at the start and end. -
You might have to remap the texture coords on your model, to get it right, or use larsgerrits way.
-
You would probably have to use ASM core mods to inject what you need changing that is the best way without base edits, or you could try reflection, it might make performance decrease when your mod is installed btw.
-
If you know c# well then coding in Java shouldn't be much different just syntax changes and you can always have the docs to reference, so you could build the bridge yourself just fork the MinecraftForge git repo.
-
They form the base to, if you look at the EntityFX class you will see a motionX, motionY, motionZ, I would think he adds a delay to the motionY so it stays at the bottom for a little while them rises up, but that is just a guess I can't look at the code because it is closed source.
-
[1.6.4] Rendering model from texture
Bantasaurusrex replied to Bantasaurusrex's topic in Modder Support
Ok thanks for explaining it to me. -
[1.7.2] Render a custom bow as a vanilla bow
Bantasaurusrex replied to SackCastellon's topic in Modder Support
Use a IItemRenderer. -
[1.6.4] Rendering model from texture
Bantasaurusrex replied to Bantasaurusrex's topic in Modder Support
ohhh ok thanks, that seems a hard way to do it, considering how tessellators work, they're hard for 2D things in my opinion, forgetting about using them for 3D effects. -
[1.6.4] Rendering model from texture
Bantasaurusrex replied to Bantasaurusrex's topic in Modder Support
You know how the pipes are rendered there is no model or anything it is just a texture. -
[1.6.4] Rendering model from texture
Bantasaurusrex replied to Bantasaurusrex's topic in Modder Support
Anyone? -
Does anyone know how to render a model from a texture like Buildcraft does? I looked at their code to try to figure out how to do it but I can't get my head around it.
-
Use loops for the XYZ directions. like larsgerrits said.
-
Integration with other mods without being a dependency
Bantasaurusrex replied to SkylordJoel's topic in Modder Support
Add to the dependency so you mod is loaded after IC2 maybe, you have not put up your main mod file so I don't know if you have done that already. -
Rendering player's skull on Gui (6th post).
Bantasaurusrex replied to Ernio's topic in Modder Support
I think in entity player there is a method called like getPlayerUsernameSkin or something if you are using a IDE of some sort you could use the find tool(CRTL + F on eclipse) to look up all the places the work skin is used, I don't know what it returns because I have never looked at it, but could be useful in your case. -
[1.7.2] TickEvent not being called
Bantasaurusrex replied to Bantasaurusrex's topic in Modder Support
Thanks, Ill try it that way it must of been the way I was registering it I was using MinecraftForge.EVENT_BUS.register(new GuiTestEvent()) But RenderGameOverlayEvent works with it but not TickEvent? -
The new tick event is not being called, anyone know why?
-
thanks, but how come it is still version 1.6?
-
Anyone know what the run configurations are for 1.7 ForgeGradle, because I keep getting a invocationTargetException I don't know if that has to do with the run configs.
-
Forge has a built in API for dimension creation. There are tutorials on the API on google.
-
Help Needed! (with on held things)
Bantasaurusrex replied to LittleChildrenWantsToPlay's topic in Modder Support
Look through minecraft source. -
If you mean lava as in lava buckets than vanilla furnaces do that, but if you mean like geo-thermal generators out of IC2 then you are going to have to figure it out yourself or find a open source mod that you can learn from, Also there are not many tutorials on coding with IC2 as its a closed mod, try searching their forums.
-
Help Needed! (with on held things)
Bantasaurusrex replied to LittleChildrenWantsToPlay's topic in Modder Support
Get the players position then search for entity instances around the players coords. -
The server doesn't handle renders, so you can send the information to the client for the render even if the client doesn't know that it is day or night time.