RobinCirex Posted October 23, 2020 Share Posted October 23, 2020 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? Quote Link to comment Share on other sites More sharing options...
ChampionAsh5357 Posted October 23, 2020 Share Posted October 23, 2020 It does help if you could find a "controlled" argument somewhere in your declared arguments. Quote Link to comment Share on other sites More sharing options...
RobinCirex Posted October 24, 2020 Author Share Posted October 24, 2020 (edited) 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 October 24, 2020 by RobinCirex Quote Link to comment Share on other sites More sharing options...
RobinCirex Posted October 24, 2020 Author Share Posted October 24, 2020 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 Quote Link to comment Share on other sites More sharing options...
ChampionAsh5357 Posted October 24, 2020 Share Posted October 24, 2020 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. Quote Link to comment Share on other sites More sharing options...
RobinCirex Posted October 24, 2020 Author Share Posted October 24, 2020 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.