Xpertmud:Config Parameters
From BattletechMUX
Local Echo
By default, xpertmud prints all sent commands to the status window, in dark cyan color.
That echo is implemented in the default script as an alias/macro, so disabling local echo works just like disabling an alias:
#setAliasState(qr/^LOCAL_ECHO$/,0)
there's also a convenience function that does the same:
#setLocalEcho(0)
Simply put one of those in your bookmark file, or, if its already there but commented out, change ## to # on that line.
Of course, if you want to tweak the way local echo works, you can do that, too. Simply replace the default "LOCAL_ECHO" Alias with your own, look at the scripting howto to get started.
