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 guys,

 

I have the following problem.

 

I added a Command for changing the player block reach distance (4.5F & 5.0F).

 

For doing that, I created a new class

 

class RangeOrganisator extends PlayerControllerMP {
private float range;
private float range_creative;
public float range_default;

public RangeOrganisator(Minecraft mcIn, NetHandlerPlayClient p_i45062_2_) {
	super(mcIn, p_i45062_2_);
	range_creative = 5.0F;
	range_default = 4.5F;

	range = mcIn.playerController.isInCreativeMode() ?  range_creative : range_default;
}

@Override
public float getBlockReachDistance() {
        return range;
    }

public void setBlockReachDistance(float _range) {
	range = _range;
    }
}

 

I know it's not a clean code because I only wanted to have it working first.

 

Well If I change it in the command class, getBlockReachDistance doesn't change.

 

public class CommandRange extends CommandBase {
@Override
public String getName() {
	return "range";
}

@Override
public String getCommandUsage(ICommandSender sender) {
	return "/range [range]";
}

@Override
public void execute(ICommandSender sender, String[] args) throws CommandException {
	RangeOrganisator ro = new RangeOrganisator(SinglePlayerCommands.mc, null);
	PlayerControllerMP mp = SinglePlayerCommands.mc.playerController;

	sender.addChatMessage(new ChatComponentText("[sPC]: PlayerControllerMP: " + mp.getBlockReachDistance()));
	sender.addChatMessage(new ChatComponentText("[sPC]: RangeOrganisator: " + ro.getBlockReachDistance()));
	if (args.length > 0) {
		ro.setBlockReachDistance(Float.parseFloat(args[0]));
	}
	else {
		ro.setBlockReachDistance(ro.range_default);
	}
	sender.addChatMessage(new ChatComponentText("[sPC]: PlayerControllerMP new:" + mp.getBlockReachDistance()));
	sender.addChatMessage(new ChatComponentText("[sPC]: RangeOrganisator new:" + ro.getBlockReachDistance()));
}
}

 

Do you know what to do?

 

Regards,

 

Ice

Regards,

 

IceTrailer

  • Author

Oh well,

I do now change the reach distance by

 

		EntityPlayerMP player = (EntityPlayerMP)sender;
		player.theItemInWorldManager.setBlockReachDistance(Double.parseDouble(args[0])); // args[0] = 20.0d

 

But it doesn't change anything visible at all.

 

What am I doing wrong?

Regards,

 

IceTrailer

  • Author

It's not possible in a different way?

Well, okay thank you for helping me :)

Regards,

 

IceTrailer

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.