|
mumpsdgen Newbie
Joined: 02 Aug 2015 Posts: 5
|
Posted: Sun Aug 02, 2015 12:23 pm
move echo from Options > General > Scripting > Echo Commands to another window? |
I have echo commands on from the CMUD preferences on. I want to be able to move the echo to a window that is not the one i used with the command line for input. Is this possible? I don't think any of the #ECHO or #SAY apply since it is the echo from the options menu. Basically, I want a window that just has an echo log from my main window's command line of the default echo from Options > General > Scripting > Echo Commands.
|
|
|
|
Daern Sorcerer
Joined: 15 Apr 2011 Posts: 809
|
Posted: Sun Aug 02, 2015 2:46 pm |
You can use an #oninput trigger to capture all input, and write it to another window with the #window command. Then you can turn the echo commands option off to not duplicate it in the main window. I'm a bit rusty on zMUD syntax, but I believe this should work:
Code: |
#oninput {^(*)$} {#window Commands {%1}} |
|
|
|
|
mumpsdgen Newbie
Joined: 02 Aug 2015 Posts: 5
|
Posted: Tue Aug 04, 2015 7:35 am |
Worked like a charm! Thank you very much :)
|
|
|
|
mumpsdgen Newbie
Joined: 02 Aug 2015 Posts: 5
|
Posted: Tue Aug 04, 2015 10:33 am |
Also of note.. this was misposted to Zmud. Should have been Cmud. Worked anyways ;)
|
|
|
|
|
|