Actually, if I'm not mistaken there are two interfaces for settings. One with audio support, and one without. (Same with the music interface).
Unless you don't want music support, and just want to remove those lines of text, you're going to have to change the interfaces. If you just don't want those lines there, then you're going to have to clear those lines (as was suggested before).
Edit: If you want to dump, just go to your RSInterface (Don't know the original name, sorry) class on your Client, and look for the loading. You should see something this, or something similar to it.
Code:
if(rsInterface.type == 4) {
rsInterface.message = stream.readString();
rsInterface.aString228 = stream.readString();
}
All you've got to do is add a little check in it, like this.
Code:
if(rsInterface.message.contains("Music + Sounds"))
System.out.println(rsInterface.id);
Just do this for the three strings of text (Check capitalization) and you should find the ID's that way.