Everything posted by Animefan8888
-
EnumFacing 1.12.2
I believe the pictures are saying the opposite.
-
EnumFacing 1.12.2
I'm not sure I understand your problem. Do you want the bounding box to rotate with the model. Or the model isn't rotating?
-
ClientChatReceivedEvent sometimes not fired
Maybe they are not using ChatType.CHAT for the messages as they have a custom chat plugin?
-
Minecraft 1.10.2 Auto Repair Problem
That is not enough, read the documentation on capabilities here.
-
How do I create custom loot tables for vanilla mobs? 1.12.2
How do Items drop Items
-
Minecraft 1.10.2 Auto Repair Problem
Did you attach your capability correctly?
-
Minecraft 1.10.2 Auto Repair Problem
I java there are fields, methods, classes/interfaces. What is the one that can return a boolean. you have the words correct isEmpty, but it isn't a field.
-
Minecraft 1.10.2 Auto Repair Problem
This is the important part, it isn't a field. What else can return a boolean.
-
Minecraft 1.10.2 Auto Repair Problem
What does your IDE say when you hover over the red line? Have you strictly compared this to your previous code.
-
Minecraft 1.10.2 Auto Repair Problem
Learn java before making a mod.
-
Minecraft Auto Repair Item 1.10.2
You will have to iterate through the items in the players inventory. EntityPlayer#inventory
-
[1.8][Solved]Ore Will not Generate in the nether
Please do not necro a thread. Make your own thread.
-
[1.12.2] Rendering "phantom" blocks?
No, this is too advanced and specific for there to be a tutorial on it. This can be done in RenderWorldLastEvent, you must check if the Block is your block/the position of the structure. And if it has a TE that determines if it should be rendered you will need to sync that.
-
Minecraft Auto Repair Item 1.10.2
Show what you tried.
-
Cannot seem to override default entity sounds
- Cant open my small server for my and my friends
That is what it looks like to me. Edit: Or Wizardry is assuming that one of its blocks is there, because it expected it to be there. And for some reason it isn't. @EBZK My recommendation to fix this is to open it in mcedit and try to find the specific position that is causing the problem and delete it, worst case scenario you will have to remove one or both of the mods.- Naming My Mod
Decide on a modid I recommend thornecraft-potions as the modid, or thcpotions or some variant. Then your unlocalized name should be equal to your items getRegistryName().toString(). While your registry name should be just the name of your item. It will be appended by your modid automatically if you have done everything right with your Item creation. Yes you can, you will probably have to set up your environment a little differently. What I do is make a folder and this is where all of my mods code will be and then create a new project in eclipse in that folder and import the forge project. This way each of your mods will have their own java project and the forge project will be un-edited. There is two more steps to this process however. After importing the forge project into the workspace you need to configure its build path so that it exports all of its libraries etc. And then you need to configure your projects build path and add the forge project to it. If this wasn't clear enough please ask specific questions.- [1.12.2] Replace world renderer
I don't believe you will have to worry about when it is rebuilt, but I can't quite tell you how it works as I have not even looked at this. Though I believe you will just need to handle the building aspect of the rendering. The "one thing" that is passed to the GPU is just all of the vertex data, texture ids, texture uv mappings, etc. But it is done in mass to reduce the amount of times it has to do this.- [1.12.2] Replace world renderer
To be honest with you, ASM might be easier, but I believe that it can be done with reflection. The world renderers(BufferBuilder instances) are stored in an instance of RegionRenderCacheBuilder within an array that is mapped to BlockRenderLayer(its an enum). Which are then stored in ChunkRenderWorker and ChunkCompileTaskGenerator. The former is stored in ChunkRenderDispatcher, and I believe this is where it is mainly stored. Not sure where you can/should access these with reflection. The instance of ChunkRenderDispatcher is stored in RenderGlobal, which has a public instance in the Minecraft class.- [1.12] Player control riding custom entity
That is what is supposed to happen. Did you get prompted to enter debug mode? Did you say yes?- Container Causes Crash on Shift Click
You are requesting a slot that doesn't exist, find out why it doesn't exist. My best guess is that it has to do with these two lines.- Custom Model Blocks (JSON)
Nope, I doubt there is one. If you go into your .minecraft directory. Go into the versions folder. Open your versions jar. navigate to assets.minecraft.models within the jar file. I recommend winrar to open the jar file if you don't have one already.- Custom Model Blocks (JSON)
assets/minecraft/models/block assets/minecraft/model/item- Custom Model Blocks (JSON)
Using one is quite obviously the easy way of doing this, however just look at the model JSONs in the minecraft jar. It's relatively simple.- [1.12] Player control riding custom entity
Then why not player.inventory.getStackInSlot(player.inventory.currentItem).getItem() == GundamItems.item Or even better player.getActiveItemStack().getItem() == GundamItems.item - Cant open my small server for my and my friends
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.