Jump to content

suigetzuu

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by suigetzuu

  1. I want to do an entity that doesnt move so I dont need multiple json models. But what do I have to do to use the json as the model for my entity? Does anyone know a tutorial or other forum post where I could find some information?
  2. Hello. I want to change the join and the quit message on my forge server. I tried out the EntityJoinWorld event but didnt find a methode for changing the message.
  3. Hello. Is there a button list or a component list in TitleScreen class?
  4. Im on 1.18 and yes I have the permission to use the code
  5. I downloaded the source of a toggle sprint mod and wanted do paste the code into my mod and combine them. It didnt worked because the field that has been used in the toggle sprint is a private field from GuiControls.
  6. Hello. I want to use a private field from GuiControls and other classes. How can I do that?
  7. Hello : D so I'm trying to detect if someone interacts (left click/right click) with my custom item. I already created the item. what options do I have to detect an interaction with my item?
  8. can you tell me the name of the variable that contains all buttons?
  9. but not the same methodes like theres no buttonlist right? whats about button ids?
  10. I want to make some custom guis. I know when another mod tries the same there will be some conflicts but the mod is not meant to be used with many other mods. I hope you'll help me
  11. Hello. At older versions like 1.12 etc you can easily change and modify the buttons from vanilla guis. Is there a way to do the same in 1.18?
  12. what goes into "args"?
  13. hello. maybe someone knows how to do this? version is 1.12 I know that its outdated so you also can tell me for 1.16
  14. no I mean like theres a button connect to hypixel" and when you press it you join hypixel server
  15. Hello. Is it possible to let the client join a server after pressing a button?
  16. https://pastebin.com/CRCRivKm here is my debug.log file
  17. hello. Im getting this error "AL lib: (EE) alc_cleanup: 1 device not closed" when closing a gui. I hope someone can help me.
  18. it spams MAIN MENU and OK but shows no text @SubscribeEvent public static void onGuiOpened(GuiScreenEvent.DrawScreenEvent.Pre event) { if (event.getGui() instanceof GuiMainMenu) { System.out.println("MAIN MENU"); Minecraft.getMinecraft().fontRenderer.drawString("BETTERHR", 5, 5, 11141290); System.out.println("OK"); } }
  19. ok so now it spams "MAIN MENU" but I still cant see the text
  20. hello. I am trying to draw a string to the main menu. I dont know whats the problem it just dont show up the string @SubscribeEvent public static void onGuiOpened(GuiOpenEvent event) { if (event.getGui() instanceof GuiMainMenu) { System.out.println("MAIN MENU"); Minecraft.getMinecraft().fontRenderer.drawString("TEXT", 5, 5, 11141290); } } it prints the "MAIN MENU" but the string is not getting drawed. I also can not open a gui in main menu but I can open it ingame I hope you guys can help me.
×
×
  • Create New...

Important Information

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