Everything posted by loordgek
-
Minecraft Bedrock Edition
it will have its own api
-
Forge 1.12.2 Does not launch.
can we see that
-
[UNSOLVED] [CLOSED] [1.12.2] Recipes for CustomTileEntity
you just took the the code from the Furnace delete all of it create a class the extend TileEntity and implements ITickable make a ItemStackHandler field override Has/GetCapbiblty http://mcforge.readthedocs.io/en/latest/datastorage/capabilities/ and make it do stuff and for the recipe delete this https://github.com/Arthgames3/1.12.2-SapphireCraft/blob/master/sapphirecraft/blocks/msinfusortileentity/recipes/MSInfusorRecipes.java example https://github.com/BCA-Team/Buildcraft-Additions/blob/2.2.x/src/main/java/buildcraftAdditions/recipe/duster/DusterRecipe.java https://github.com/BCA-Team/Buildcraft-Additions/blob/2.2.x/src/main/java/buildcraftAdditions/recipe/duster/DusterRecipeManager.java
-
[Solved][1.12.2] Percentage of sleeping players to skip the night
https://github.com/Quetzi/Morpheus
-
Forge for 1.12 not working for me
if the Cracked Launcher is messed up then yes and BUY THE GAME
-
Wrong version declared as recommended
https://github.com/MinecraftForge/MinecraftForge/commit/3f4dfbb367e8b47a981bcec7e13ed33c8834289c
-
Create a Cauldron Thingy That Takes items and outputs results.
in the method checkAndCraft you do is client side that will not work the TileEntity already has the world and the pos. and for the recipe take a look at this NOTE this is code form 1.7.10 https://github.com/BCA-Team/Buildcraft-Additions/blob/2.2.x/src/main/java/buildcraftAdditions/recipe/refinery/RefineryRecipe.java https://github.com/BCA-Team/Buildcraft-Additions/blob/2.2.x/src/main/java/buildcraftAdditions/recipe/refinery/RefineryRecipeManager.java
-
[1.12.2, Botania addon] I'm making an addon to re-add the Ring of the Aesir, and need to change a method in Botania itself.
ask the dev to add the method back DO NOT USE ASM
-
What ever i do scala-library.jar will not work!
good job you found a thread that is from 2013 go and make your own thread and what MC version are you using
-
Making block give off colored light
you want this https://github.com/elucent/Albedo and how to use https://github.com/Tamaized/AlbedoTorches
-
[1.12.2] Hooking into LWJGL Minecraft window to add macOS Touch Bar features
https://github.com/Thizzer/JTouchBar
-
[1.12.2] Checking if player inventory is empty is inconsistent
that is is intended, use NonNullList instead of list
-
PopulateChunkEvent.Post Never Fires Every Chunk In Nether
you need it to setup the dev environment
-
[1.12] Upgrade to the new version
https://minecraft.gamepedia.com/1.13
-
New Laptop, New Ideas, New Problems...
- Forge installer won´t open
@cadiboo stop telling every body to use 151, 161 works just fine- Why?
1 there is no forge installed 2 @Cadiboo 1 what you are telling has nothing to do with the issue and 2 he is using Java 8u151 click on the link and follow the instructions for your OS- [1.12.2] Storing Data on the player for MP
@Override public void readNBT(Capability capability, Object instance, EnumFacing side, NBTBase nbt) { NBTTagList list = (NBTTagList)nbt; for (int i = 0; i < list.tagCount(); i++) { new ItemStack(list.getCompoundTagAt(i)); } } this is what you want- [1.12.2] Storing Data on the player for MP
@Nullable @Override public NBTBase writeNBT(Capability<IBlacklist> capability, IBlacklist instance, EnumFacing side) { NBTTagList tagList = new NBTTagList(); int iteration = 0; for (String item : instance.getItems()) { NBTTagCompound tag = new NBTTagCompound(); tag.setString(blacklistPrefix+iteration, item); tagList.appendTag(tag); iteration ++; } return tagList; } @Override public void readNBT(Capability<IBlacklist> capability, IBlacklist instance, EnumFacing side, NBTBase nbt) { if( instance == null ) return; if( nbt != null && nbt instanceof NBTTagList ) { NBTTagList list = (NBTTagList) nbt; int iteration = 0; while( list.iterator().hasNext() ) { instance.addItem( list.get(0).toString() ); iteration ++; } } } what on earth is this, go and learn java first- Remove TileEntity and the Item in Slot
nope he is on 1.7.10 and WHY remove the tileEntity that could end up badly because the other mod still thinks there is a tile on that block- [1.12] Tile Entity does not load
all of it post it on https://github.com/- slf4j dependency missing?
you need to shadow org.slf4 into your jar can you post your mod jar here- slf4j dependency missing?
http://imperceptiblethoughts.com/shadow/- [1.12.2] Test if Inventory contains multiple Items
can you put all your code on https://github.com/ so we can have a look- [1.12.2] Test if Inventory contains multiple Items
@Differentiation that code block is a bit hard to read - Forge installer won´t open
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.