function ac_menu_info( %blid ){ %name = blidToName( %blid ); if ( %name < 0 ) { return; } if ( %blid == getNumKeyID() ) { %info = "This is you."; } else { %t = getClientTrustLevel(); switch$ ( %t ) { case 3: %info = %info NL "You trust this person as much as yourself."; case 2: %info = %info NL "You trust this person with Full Trust."; case 1: %info = %info NL "You trust this person with Build Trust."; case 0: %info = %info NL "You do not trust this person."; } %info = %info NL "This person is " @ ( !ac_is_muted( %blid ) ? "not " : "" ) @ "being ignored."; %info = %info NL "This person is " @ ( !ac_is_highlighted( %blid ) ? "not " : "" ) @ "being highlighted."; } messageBoxOK( %name SPC "(BL_ID: " @ %blid @ ")", trim( %info ) );}