mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
if i join 1 channel, then do "echo $chan text" when i join, then it work just fine.. but if i join 3 channels fast, then the echo ends up in the status.. and if i trying to use a %var where i set the channels when i join "with the help of raw 332" they all end up in the last channel joined.. anyone got an idea ?? :tongue:


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Mar 2003
Posts: 160
Vogon poet
Offline
Vogon poet
Joined: Mar 2003
Posts: 160
echo $2 will solve that

Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
nope didnt :tongue: echoing the text to status :tongue:


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Mar 2003
Posts: 160
Vogon poet
Offline
Vogon poet
Joined: Mar 2003
Posts: 160
I take it raw 332 is the one that shows you what the topic is for that channel if one is set?

Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
yes, but since i using more lines then just 1 i gather info from 3 more raw befor echo it to me..
---------- EDIT

332 (topic)
324 (mode)
333 (topic set by - date/time)
366 (trigger the echo's)

Last edited by sparta; 28/09/04 08:14 PM.

if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Mar 2003
Posts: 160
Vogon poet
Offline
Vogon poet
Joined: Mar 2003
Posts: 160
Well i join 4 channels on 2 different networks and this echoes the channels topics in each of their windows
Code:
raw *:*: { 
  if $numeric == 332 { echo -i24 $2 Topic: $strip($3-) | halt }
}
 


Link Copied to Clipboard