Everything posted by Animefan8888
-
["1.9.4"]addInformation
tooltip.add(I18n.translateToLocal("")); It is deprecated as of 1.10 not sure if it will be removed or not.
-
Random crash on world start up [1.10.2]
We can't do anything without the code. Do you ever use Minecraft.getMinecraft().theplayer?
-
Custom inventory with 1 slot.
You should have your own Container and Gui. You will also need a GuiHandler which is a class that implements IGuiHandler. There are plenty of tutorials out there for those, as they haven't really changed much.
-
1.7.10 ---> 1.10.2 - Need a Bit of Assistance Please
Look at onItemRightClick in Item it has changed and instead of EnumAction.BLOCK use EnumAction.BOW
-
Custom inventory with 1 slot.
How do you put Items into the inventory?
-
Custom inventory with 1 slot.
Probably has something to do with your container.
-
1.7.10 ---> 1.10.2 - Need a Bit of Assistance Please
I believe both onItemRightClick and onPlayerStoppedUsing have been changed.
-
1.7.10 ---> 1.10.2 - Need a Bit of Assistance Please
What?! Forge doesn't support editing base classes.
-
(solved) Custom Bonemeal not working 1.10
The best help i can recommend is Learning Java I provided a link.
-
1.10.2 Block Not Working .json
"normal": {"model": "modid:model_name"}
-
1.10.2 Block Not Working .json
No the way I told you, but instead of "inventory" use "normal"
-
(solved) Custom Bonemeal not working 1.10
First time modding or first time using java. Why don't you look at the method applyBonemeal and see what the difference is between what you call, and what it is.
-
1.10.2 Block Not Working .json
You forgot modid.
-
(solved) Custom Bonemeal not working 1.10
The thing was I wasn't being sarcastic...That error literally tells you what is wrong.
-
(solved) Custom Bonemeal not working 1.10
What does that error tell you after learning Java?
-
1.10.2 Block Not Working .json
Post new blockstate.
-
[3/4 SOLVED]Best TickEvent to add PotionEffect through IMessage
That is probably why.
-
1.10.2 Block Not Working .json
Do what Matryoshika maybe I am misunderstanding the variant thing again.
-
(solved) Custom Bonemeal not working 1.10
- [3/4 SOLVED]Best TickEvent to add PotionEffect through IMessage
How are you adding the potion effect?- 1.10.2 Block Not Working .json
Here you are using Minecraft.getMinecraft.getItemModelMesher() and not ModelLoader.setCustomModelResourceLocation(...)- [3/4 SOLVED]Best TickEvent to add PotionEffect through IMessage
Then why are you checking if it is a server world? if(!event.player.worldObj.isRemote) {- [3/4 SOLVED]Best TickEvent to add PotionEffect through IMessage
Why do you need to send a message in the first place, why are you trying to add a potion effect on the client when it is handled server side?- 1.10.2 Block Not Working .json
The last error is in EEItems line 31 and 26. Where do you register your blocks?- [3/4 SOLVED]Best TickEvent to add PotionEffect through IMessage
Please post code. - [3/4 SOLVED]Best TickEvent to add PotionEffect through IMessage
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.