Top

ComChannels *UPDATETD*


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Dec 26, 2007
Last Updated  Dec 31, 2007
Tags  aoustis  channel  channels  com  g13  g13aoustis 
  Bookmark and Share

Introduction

Thanks to the comments you posted for me i changed this code a bit

Grab the Code

Comments

  (4)  RSS
Freckle
Comments: 36
 
mIRC Snippet:  ComChannels *UPDATETD*
Posted on Dec 26, 2007 4:59 pm
Sorry but I find that script pretty messy, why didn't you use "while"?
mountaindew
Comments: 1,645
 
mIRC Snippet:  ComChannels *UPDATETD*
Posted on Dec 26, 2007 6:32 pm
Code:

  var %x = 1
  while $comchan($$1,%x) {
    echo -a $v1
    inc %x
  }

brattmfc
Comments: 1
 
mIRC Snippet:  ComChannels *UPDATETD*
Posted on Dec 27, 2007 4:32 am
good stuff :) any one know how to check for comchans if you connect to multiple networks. e.g search for comchans with "BobMarley" on every network im connected to.
Lindrian
Comments: 755
 
mIRC Snippet:  ComChannels *UPDATETD*
Posted on Dec 27, 2007 5:33 am
just use a regular loop
Code:

alias com.chan {
var %x = 1
while ($comchan($1,%x)) {
echo -a $v1
inc %x
}
}

Please Register or Login to start posting comments.
Bottom