Everything posted by Danebi
-
I can't load forge
Try to run jarfix.
-
How do I make a block transparent?
This isn't in your client setup event.
-
Server cant start
Post the debug.log.
-
I cant load forge 1.16.3
In your .minecraft\logs folder.
-
I cant load forge 1.16.3
Post the debug.log.
-
How can change the texture of an item depending of the amount?
A link to what?
-
Custom Item Problem (FORGE 1.15.2)
It should be lower case, i think. Also, it is crossed out because the constructor of DeferredRegister is deprecated. You should use DeferredRegister::create.
-
Forge server starts as a vanilla server
How are you starting the server?
-
Keep crashing on startup
Post the debug.log.
-
1.16.1 trouble with starting minecraft
In your .minecraft\logs folder.
-
1.16.1 trouble with starting minecraft
Post the debug.log.
-
Not being able to startup server.
- Events registering in main class
https://mcforge.readthedocs.io/en/latest/events/intro/- 1.16.1 forge bug?
Post the debug.log.- Forge 1.16.1 Crash: Exception in server tick loop java.lang.NoSuchFieldError: STONE
The file is unavailable to me. Paste it to gist github.- io.netty.handler error
Are you using twitch?- forge server error
Post the debug.log.- onItemRightClick Chat Message
Your code prints both "Hey" and "Hey 2" because after you print "Hey", count is increased and also the second statement is true. For what you want to do you can try with something like this: private String[] array = {"Hey", "Hey 2"}; private int count = 0; @Override public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity playerIn, Hand handIn) { if (!worldIn.isRemote()) { playerIn.sendMessage(new StringTextComponent(array[count])); count++; return new ActionResult<>(ActionResultType.SUCCESS, playerIn.getHeldItem(handIn)); } return new ActionResult<>(ActionResultType.SUCCESS, playerIn.getHeldItem(handIn)); } If you want to make it loop between the Strings you can use an if statement to reset count.- Problem W/1.15.2
Delete this file: C:\Users\conne\AppData\Roaming\.minecraft\config\fml.toml.- Problem W/1.15.2
- Problem W/1.15.2
The debug.log is a file in the .minecraft\logs folder. Paste it on github gist and link it here.- Problem W/1.15.2
Post the debug.log.- Problem with CodeChicken Lib
Post the debug.log (It's a file located in your .minecraft\logs folder).- Trying to make a custom skin overlay that activates at the press of a key
> 14- Trying to make a custom skin overlay that activates at the press of a key
We do not offer help for mcreator. Also.. 1.7 is no longer support. Update to a modern version to receive support. - Events registering in main class
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.