To prevent all names, add this to PlayerMobile.cs:
Code:
public override void OnSingleClick( Mobile from )
{
if ( !from.InRange( this, 9 ) )
return;
base.OnSingleClick( from );
}
This will only work for PlayerMobiles, if you want BaseCreatures to work as well, just add a similar one to BaseCreatures.cs (thanks Alambik for remembering me to put this here)
This may require you to modify it to work on AoS servers that disable single clicks.
PS:The 9 is the range required to see all names (0 to disable, but this will make people not being able to see names without opening paperdoll on no-AoS servers)
PS2:Not tested with macros from programs, like razor, but it should work.