
sjoopies
Members-
Posts
32 -
Joined
-
Last visited
Everything posted by sjoopies
-
[1.8.9] How can I get the entity I'm looking at on server side
sjoopies replied to sjoopies's topic in Modder Support
I thought you meant onItemInteractWithEntity, thanks for your help. -
[1.8.9] How can I get the entity I'm looking at on server side
sjoopies replied to sjoopies's topic in Modder Support
My entities are not instances of EntityLivingBase. -
[1.8.9] How can I get the entity I'm looking at on server side
sjoopies replied to sjoopies's topic in Modder Support
This is my code that only works for client side: https://gist.github.com/anonymous/81e2a90998f318f1c47d -
[1.8.9] How can I get the entity I'm looking at on server side
sjoopies replied to sjoopies's topic in Modder Support
Does it matter, because it's kind of complicated? -
[1.8.9] Can't add JEI dependency to workspace
sjoopies replied to sjoopies's topic in Modder Support
I fixed it... I had two build.gradles open and i put the "repositories" thing in the wrong file. -
[1.8.9] Can't add JEI dependency to workspace
sjoopies replied to sjoopies's topic in Modder Support
https://gist.github.com/anonymous/a385e5af17e545edfbd3 -
[1.8.9] Can't add JEI dependency to workspace
sjoopies replied to sjoopies's topic in Modder Support
If you mean in the build.gradle then yes -
I added the dependency for the JEI and I got this error when trying to setupDecompWorkspace I also downloaded the mod and put it in the mods folder of my workspace and in the lib folder too
-
When ever I run my mod my block always looks like a cube instead of its model Also this is printed out in the console: OBJLoader.Parser: command 's' (model: '[My model location]') is not currently supported, skipping this is my code for rendering:
-
I have a block and it is using an OBJ file and everything works except I want to rotate it depending on the time. I tried different things but I could not get it to work.
-
I tried using the arguments "--username=" and "--password=" in my dev environment, but I get the error Unrecognized option: --username=(my user name is here) Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. I'm using Forge-1.8.9-11.15.0.1702
-
I tried Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Item.getItemFromBlock(CPMBlocks.adv_furnace), 0, new ModelResourceLocation("stone", "inventory")); but it only renders the texture in inventory. Is there any thing I have to call to render texture the block in world
-
replace: @Override public boolean handleRenderType(ItemStack item, ItemRenderType type) { return true; } with: @Override public boolean handleRenderType(ItemStack item, ItemRenderType type) { return type != ItemRenderType.INVENTORY; }
-
I am trying this with my mod right now to see how you can do it
-
put this --> health_potion = new ModelRenderer(this, 0, 0); above this --> health_potion.mirror = true; Its in the model class
-
can you now show me your ClientProxy, ModelCrystal, and RenderHealthCrystal
-
show me the crash report