mIRC Home    About    Download    Register    News    Help

Print Thread
#106225 26/12/04 09:19 PM
Joined: Aug 2004
Posts: 26
D
Danko Offline OP
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Aug 2004
Posts: 26
Hi! I was wondering how i can echo myself to another channel?

Code:
on *:text:*:#channel1:{
  if $network == EfNet {
    set -u %relayto $1-
    scid -at1 checknets
  }
}
alias -l checknets {
  if $network == UnderNet && $me ison #channel2 {
    msg #channel2 %relayto
  }


This works great for echoing other ppl, but not myself..
And how do I echo only those lines i type which begins with "Question", "Answer", "Hello", ec... ?

#106226 26/12/04 09:22 PM
Joined: Nov 2004
Posts: 148
D
Vogon poet
Offline
Vogon poet
D
Joined: Nov 2004
Posts: 148
On text doesn't work on your own text. You can use On Input event to catch text you wrote.


Link Copied to Clipboard