
suigetzuu
Members-
Posts
23 -
Joined
-
Last visited
Everything posted by suigetzuu
-
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?
-
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.
-
got it
-
Hello. Is there a button list or a component list in TitleScreen class?
-
Im on 1.18 and yes I have the permission to use the code
-
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.
-
Hello. I want to use a private field from GuiControls and other classes. How can I do that?
-
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?
-
can you tell me the name of the variable that contains all buttons?
-
-
but not the same methodes like theres no buttonlist right? whats about button ids?
-
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
-
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?
-
what goes into "args"?
-
How do I join a server after pressing a button?
suigetzuu replied to suigetzuu's topic in Modder Support
thanks it works fine -
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
-
How do I join a server after pressing a button?
suigetzuu replied to suigetzuu's topic in Modder Support
no I mean like theres a button connect to hypixel" and when you press it you join hypixel server -
Hello. Is it possible to let the client join a server after pressing a button?
-
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"); } }
-
ok so now it spams "MAIN MENU" but I still cant see the text
-
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.