Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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!

7 minutes ago, Swirls said:

bus = Bus.MOD

thats the wrong bus, remove it

Edited by loordgek

  • Author
1 minute ago, loordgek said:

thats the wrong, bus remove it

Should i remove it completely?

(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.

  • 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

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?

  • 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 by Swirls

  • 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.

  • Author
41 minutes ago, Danebi said:

Is the event called?

Isnt the event called with event handler?

  • Author
1 minute ago, poopoodice said:

Use post otherwise the button you added will get remove afterwards.

Sorry, but i dont understand 

  • 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

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 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.

  • 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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.