
TSEngineer
Members-
Posts
21 -
Joined
-
Last visited
Everything posted by TSEngineer
-
How to Create Custom Model Armor Without Programs
TSEngineer replied to Ragnar's topic in Modder Support
Make a custom armor without any programs? Impossible. -
Oh, thanks! It's solved.
-
Where do I put notifyBlockUpdate?
-
But it's not working
-
@Override public void handleUpdateTag(NBTTagCompound tag) { u = tag.getBoolean("u"); d = tag.getBoolean("d"); n = tag.getBoolean("n"); s = tag.getBoolean("s"); w = tag.getBoolean("w"); e = tag.getBoolean("e"); } @Override public NBTTagCompound getUpdateTag() { NBTTagCompound nbt = new NBTTagCompound(); nbt.setBoolean("u", u); nbt.setBoolean("d", d); nbt.setBoolean("n", n); nbt.setBoolean("s", s); nbt.setBoolean("w", w); nbt.setBoolean("e", e); return nbt; }
-
Maybe handleUpdateTag and getUpdateTag?
-
Ok, where do I override handleUpdatePacket then?
-
So I need to make an update packet and send it to client, then handle it on client, right?
-
Will markDirty() also help?
-
Now tile entity is not saving u, d, n, s, w, e. https://github.com/TSEngineer/ExtraExpansion
-
If one conduit changed, it's connections will be applied in every conduit in the world, but NOT always, something strange is happening
-
They're just rendering wrong. See: src/main/resources/assets/extraexpansion/blockstates/conduit.json src/main/resources/assets/extraexpansion/models/conduit_(u,d,n,s,w,e).json src/main/java/ru/tse/extraexpansion/tech/conduit/BConduit.java
-
Source, I think is needed: https://github.com/TSEngineer/ExtraExpansion
-
-
[SOLVED] Blocks are transparent around the block
TSEngineer replied to TSEngineer's topic in Modder Support
Oops, I just have forgot about this methods. -
-
I want to render connecting pipes like in Thermal Dynamics, Industrial Craft, Mekanism etc., but it's hard. How can I do it?
-
I have looked, but didn't found anything, still looking for answer, also buildcraft quarry drill moving frame is impassable. I will search in BuildCraft Quarry class, boat class and shulker again.
-
Entity has not AI and can be moved by mod only.
-
I need to make entity impassable, how can I do it?