About
Welll i havnt seen a tutorial on this, and i found this myself so i guess im not a retarded skid, just one with a brain :3, love you HF, enjoy my tut!
Open PlayerControllerMP.java
Find the line(pretty obvious):

[spoiler]
Code:
public float getBlockReachDistance()
[/spoiler]
Add a toggle
Ill post two ways of doing it!

[spoiler]
Code:
if(GuiIngame.reach)
{
}
[/spoiler]
Or.

[spoiler]
Code:
if(Hacks.reach)
{
}
[/spoiler]
Adding Far reach
Heres what to add, play with the first set of values (9.5D/10F) for longer reach

[spoiler]
Code:
public float getBlockReachDistance()
{
if(GuiIngame.reach)
{
return !creativeMode ? 9.5F : 10F;
}else{
return !creativeMode ? 4.5F : 5F;
}
}
[/spoiler]
Credits
Well me for finding this( i know im not the original finder, but hey, i made the first TuT in HF for it

) i hope you like this,
