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

Hey, I'm trying to make a command using this code

	public static void register(CommandDispatcher<CommandSource> dispatcher) {
		dispatcher.register(Commands.literal("picture").executes(source -> {
			return command(source.getSource(), source.getSource().asPlayer());
		}).then(Commands.argument("link", StringArgumentType.string()).argument("width", IntegerArgumentType.integer())
				.argument("height", IntegerArgumentType.integer())).executes(source -> {
					return command(source.getSource(), source.getSource().asPlayer(),
							StringArgumentType.getString(source, "controlled"),
							IntegerArgumentType.getInteger(source, "width"),
							IntegerArgumentType.getInteger(source, "height"));
				}));
	}

	private static int command(CommandSource source, PlayerEntity player) {
		return 1;
	}

	private static int command(CommandSource source, PlayerEntity player, String controlled, int width, int height) {
		return 1;
	}

However, everytime I try to use it, I get the error "An unexpected error occurred trying to execute that command" and nothing happens. Can someone tell me what I'm doing wrong?

  • Author
On 10/23/2020 at 3:13 PM, ChampionAsh5357 said:

It does help if you could find a "controlled" argument somewhere in your declared arguments.

oh, that was dumb

Edited by RobinCirex

  • Author
On 10/23/2020 at 3:13 PM, ChampionAsh5357 said:

It does help if you could find a "controlled" argument somewhere in your declared arguments.

well, still doesn't work :(

  • Author
2 hours ago, ChampionAsh5357 said:

The other issue is that you're using argument non-statically. You can chain arguments with then and add the argument in each one, then call execute.

Thank you very much

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.