mIRC Home    About    Download    Register    News    Help

Print Thread
#139901 19/01/06 03:43 PM
Joined: Jan 2006
Posts: 3
J
Jhereg Offline OP
Self-satisified door
OP Offline
Self-satisified door
J
Joined: Jan 2006
Posts: 3
just have not used mIRC much in last couple of years.

just want to do the following:

on 1:text:!list:#channel /msg #channel Lee Dan Rob Nick


but have each name on its own line


yes simple but still having a brain fart.

#139902 19/01/06 05:10 PM
Joined: Oct 2004
Posts: 72
C
Babel fish
Offline
Babel fish
C
Joined: Oct 2004
Posts: 72
What about: /msg #channel Lee | /msg #channel Dan | /msg #channel Rob | /msg #channel Nick ?
Btw: what's that smell? grin

Last edited by captain_comic; 19/01/06 05:16 PM.
#139903 19/01/06 05:27 PM
Joined: Jan 2006
Posts: 3
J
Jhereg Offline OP
Self-satisified door
OP Offline
Self-satisified door
J
Joined: Jan 2006
Posts: 3
tried that did not work.

#139904 19/01/06 05:34 PM
Joined: Mar 2005
Posts: 420
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Mar 2005
Posts: 420
make new lines for each & use "{}"

Code:
 on *:text:!list:#Channel: {
  msg # Lee
  msg # Dan
  msg # Rob
  msg # Nick
} 


You can still use the same format captain_comic had posted but remember to put "{}" around them to work properly.

Last edited by xDaeMoN; 19/01/06 05:35 PM.

If you have a plastic floor runner over your tiles, then you're one Hella Pinoy!
#139905 19/01/06 06:16 PM
Joined: Jan 2006
Posts: 3
J
Jhereg Offline OP
Self-satisified door
OP Offline
Self-satisified door
J
Joined: Jan 2006
Posts: 3
thanks guys


Link Copied to Clipboard