Unknown2005-03-07 18:41:35
Does anyone know how to send lines of text to windows besides the main one with zMUD?
Unknown2005-03-07 19:10:18
Richter2005-03-07 20:07:20
It would be nice if I could get a window for tells, just like an MSN window popping up.
Daganev2005-03-07 20:13:00
You have to create a status window. and set that status window to display some variable that you set to the text you want to put in there.
For a good example go to www.noctusari.org and get HArker's healing script. It sends all the afflictions into seperate window.
For a good example go to www.noctusari.org and get HArker's healing script. It sends all the afflictions into seperate window.
Drago2005-03-07 20:53:41
I have something to do this somewhere...
Input this:
Then, right-click in the chat window and drop down a command line, then input this:
That works fine for me. It captures GT, CT, CLT and Tells, and sends them to another window.
Input this:
CODE
#ALIAS cap {#if (@cap=0) {#t+ Trigger;#say %ansi(10)Capturing Channels;cap=1} {#t- Trigger;#say %ansi(10)Capturing Off;cap=0}}
#VAR cap 0 0
#CLASS Capture|Trigger
#TRIGGER {^~(*~)~:*} {#CAPTURE chat;#GAG;#T+ text;#T- trigger}
#TRIGGER {^~<~<*~>~>~:*} {#CAPTURE chat;#GAG;#T+ text;#T- trigger}
#TRIGGER {^* tells you,} {#CAPTURE chat;#GAG;#T+ text;#T- trigger}
#CLASS Capture|Text
#TRIGGER {*} {#CAPTURE chat;#GAG} "Misc|chat|chattext"
#CLASS 0
#WIN chat
#t- Text
#VAR cap 0 0
#CLASS Capture|Trigger
#TRIGGER {^~(*~)~:*} {#CAPTURE chat;#GAG;#T+ text;#T- trigger}
#TRIGGER {^~<~<*~>~>~:*} {#CAPTURE chat;#GAG;#T+ text;#T- trigger}
#TRIGGER {^* tells you,} {#CAPTURE chat;#GAG;#T+ text;#T- trigger}
#CLASS Capture|Text
#TRIGGER {*} {#CAPTURE chat;#GAG} "Misc|chat|chattext"
#CLASS 0
#WIN chat
#t- Text
Then, right-click in the chat window and drop down a command line, then input this:
CODE
#CLASS 0
#VAR lastline {}
#TRIGGER {^~(*~)~:*$} {#if (%line2=%trigger) {#gag}}
#TRIGGER {H:} {#gag}
#TRIGGER {^*h, *m, *e, *w} {#gag}
#TRIGGER {*} {#if (%trigger=%line2) {#gag}}
#VAR lastline {}
#TRIGGER {^~(*~)~:*$} {#if (%line2=%trigger) {#gag}}
#TRIGGER {H:} {#gag}
#TRIGGER {^*h, *m, *e, *w} {#gag}
#TRIGGER {*} {#if (%trigger=%line2) {#gag}}
That works fine for me. It captures GT, CT, CLT and Tells, and sends them to another window.
Richter2005-03-07 21:14:34
Over -my- head...