
slugslug
Members-
Posts
91 -
Joined
-
Last visited
Everything posted by slugslug
-
[1.10] Using two fluid tanks in one tile entity
slugslug replied to slugslug's topic in Modder Support
How would that help me? -
How would I go about returning two fluid tanks in the getCapability method? How would I decide witch one to return.
-
[1.7.10] ForgeDirection becoming null in packet from client to server
slugslug replied to slugslug's topic in Modder Support
Thank u guys for the help. I will change my other messages to do the same. -
[1.7.10] ForgeDirection becoming null in packet from client to server
slugslug replied to slugslug's topic in Modder Support
That fixed it but I still don't know why it's bad so many other mods do it this way. Ee3 does it this way -
[1.7.10] ForgeDirection becoming null in packet from client to server
slugslug replied to slugslug's topic in Modder Support
I have other messages that work fine with how I have them setup. -
[1.7.10] ForgeDirection becoming null in packet from client to server
slugslug replied to slugslug's topic in Modder Support
Here is the Message Coords: -
So I am sending a packet from my gui with a forgedirection to my tile entity. The forge direction is becoming null in toBytes or fromBytes. It is not null in the constructor. It is null in onMessage. Here is the to and from Bytes methods: direction is the ForgeDirection being passed in through the constructor.
-
[1.7.10]Forge 10.13.2.1231 gradlew idea not adding run configurations
slugslug replied to slugslug's topic in Modder Support
oh ok thanks. -
[1.7.10]Forge 10.13.2.1231 gradlew idea not adding run configurations
slugslug replied to slugslug's topic in Modder Support
Why not I have used that entry of times. I figured what I did wroung. Normally I run gradlew idea before I open the project in idea. This time i opend the project first. -
[1.7.10]Forge 10.13.2.1231 gradlew idea not adding run configurations
slugslug replied to slugslug's topic in Modder Support
IM NOT A NOOB!!! I have set up my previous workspaces for inteliji like this before. -
Please no. Why what's wroung with him?
-
Also with creative tabs there is an array of them that only has 12 and the constructor to make a new tab requires an index. So to make a new tab you have to override a vanilla one.
-
Yea I noteced it says missing myblockname.json. I tried adding multiple blockstates to one block and my game just freezes when I open my inventory.
-
Yea ik. I hate blockstates. What was wrong with metadata.
-
Yea I can't either.
-
I started to mess with 1.8 also and noticed there is no Iicons.
-
That's what I did. How am I supposed to use the private vars in EntityFishHook in my dev envourment? I extend EntityFishHook and copy the update method and change Item.FishingRod to my custom rod but all the cars are private so I can't compile.
-
They seem pretty easy to setup. I am just trying to make all the fields in ItemFishingRod public. Do I need to make a core mod and add the transformer there or I can I do it my regular mod?
-
That statement I posted checks to see if the player is not in creative mode If you want to check of the player is in creative mode just remove the !.
-
Are you trying to check to see if the player is in creative or is not in creative?
-
You would do if(!player.capabilities.isCreativemode) Don't copy and paste spelling might not be right I typed this up on my phone.
-
What class do you have this method in? You don't pit @override you put @subscribeevent and then you need to register the event in your main class.
-
Thank you it now builds.
-
I can run the minecraft client in my dev envourment so how is there compile errors?