Posted August 22, 20205 yr Hello there, I added a addWidget method to instance of InventoryScreen but it seems not to work. I don't know what might be causing the issue. Perhaps its my event handler. @Mod.EventBusSubscriber(modid = StudyingMod.MOD_ID, bus = Bus.MOD, value = Dist.CLIENT) public class SurvivalInventory { @SubscribeEvent public static void addCustomButtonToInventory(GuiScreenEvent.InitGuiEvent.Pre event) { if (event.getGui() instanceof InventoryScreen) { event.addWidget(new Button(8, 12, 6, 3, "test", new CustomAction())); } } public static class CustomAction implements IPressable { public void onPress(Button button) { } } } If anyone knows what the issue might be, help would be really appreciated. Thanks in forward!
August 22, 20205 yr 7 minutes ago, Swirls said: bus = Bus.MOD thats the wrong bus, remove it Edited August 22, 20205 yr by loordgek
August 22, 20205 yr Author 1 minute ago, loordgek said: thats the wrong, bus remove it Should i remove it completely?
August 22, 20205 yr (or you can do bus=Bus.FORGE, but there's only two busses, and the Forge bus is the default bus). Bus.Mod is for lifecycle events (FMLPreInit, Registry, etc) Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
August 22, 20205 yr Author 14 minutes ago, Draco18s said: (or you can do bus=Bus.FORGE, but there's only two busses, and the Forge bus is the default bus). Bus.Mod is for lifecycle events (FMLPreInit, Registry, etc) Again, it's not working for some reason. I tried changing x, y of the button but didn't help. At this point i really don't know what to do
August 22, 20205 yr Just now, Swirls said: Again, it's not working for some reason. I tried changing x, y of the button but didn't help. At this point i really don't know what to do Can you show your code?
August 22, 20205 yr Author 3 minutes ago, Danebi said: Can you show your code? Sure, This is the code after I removed Bus.MOD and changed x,y,height,width of button @Mod.EventBusSubscriber(modid = StudyingMod.MOD_ID, bus = Bus.FORGE, value = Dist.CLIENT) public class SurvivalInventory { @SubscribeEvent public static void addCustomButtonToInventory(GuiScreenEvent.InitGuiEvent.Pre event) { if (event.getGui() instanceof InventoryScreen) { event.addWidget(new Button(154, 33, 31, 14, "test", new CustomAction())); } } public static class CustomAction implements IPressable { public void onPress(Button button) { } } } Edited August 22, 20205 yr by Swirls
August 22, 20205 yr Author 1 minute ago, Danebi said: Is the event called? Once again, I've been told on discord that event is called with event handler.
August 23, 20205 yr Author 41 minutes ago, Danebi said: Is the event called? Isnt the event called with event handler?
August 23, 20205 yr Use post otherwise the button you added will get removed afterwards. Edited August 23, 20205 yr by poopoodice
August 23, 20205 yr Author 1 minute ago, poopoodice said: Use post otherwise the button you added will get remove afterwards. Sorry, but i dont understand
August 23, 20205 yr Quote .InitGuiEvent.Pre use .Post, which is called after all buttons are cleared.
August 23, 20205 yr Author 3 minutes ago, poopoodice said: use .Post, which is called after all buttons are cleared. So basically instead of .Pre i would use .Post
August 23, 20205 yr 20 minutes ago, Swirls said: Once again, I've been told on discord that event is called with event handler. Isnt the event called with event handler? Have you confirmed that it is being called? is the question, not where are YOU calling it? Have you verified that your code, is in fact, being executed. Use a breakpoint and the debugger. Edited August 23, 20205 yr by Draco18s Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
August 23, 20205 yr Author 13 minutes ago, poopoodice said: That's what I think. Its working after changing from .Pre to .Post, thank you very much for your time!
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.