Jump to content

Craftit7

Members
  • Posts

    69
  • Joined

  • Last visited

Everything posted by Craftit7

  1. Ok ok, thanks so much. Will look at it
  2. Urgh... So how am i supposed to know how to use KeyBinding? I searched the whole internet
  3. I said please link the docs, i cant find it.
  4. I wasn't able to find anything about "ClientTicks". Here is my mod main file:- package com.craftit7.fpsbooster; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.eventbus.api.IEventBus; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; @Mod("customchatembeds") public class FpsBooster { public static final Logger LOGGER = LogManager.getLogger(); public static final String MOD_ID = "customchatembeds"; public FpsBooster() { IEventBus Bus = FMLJavaModLoadingContext.get().getModEventBus(); MinecraftForge.EVENT_BUS.register(this); } private void setup(final FMLCommonSetupEvent event) {} }
  5. Hello, I wasn't able to make what you said. Can you maybe link the docs? I really need them. Or just provide a working example of what you said.
  6. So, I want to listen for client pressing H and then open a custom gui. The mod is a mod that will contain custom text that will be sent in the chat, sending in chat using command "say {msg}" works, the problem here is opening a gui on key press. Can anyone help? Btw, I still don't have a custom gui, i need help on how to do that too.
  7. Thanks but where can I find that class?
  8. Also Can you give an example for "Implementation"
  9. Pressing a key will be better for my mod
  10. The config button that is at the mods settings, or just when a key is pressed open a gui to edit settings, a 1.16.4 mod did it.
  11. I searched a little bit about it, nothing works. I already made some code to start the mod, it doesnt have any thing as of now
  12. Wait what, really? Ok then, im gonna make a new thread for how to make "config" tab.
  13. Bump Please help, I really need help
  14. I searched the whole internet for an answer, didn't find one. Please help.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.