Top

ComChannels *UPDATETD*


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

Introduction

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

Grab the Code

alias comchan {
  window -m @ComChans
  //echo @comchans 12*4Listing ComChans With $1
  var %nchan = 1  
  :loop
  while (%nchan <= $comchan($1,0)) { 
    //echo @ComChans 12*14 $+ $comchan($1,%nchan)
    inc %nchan 
    goto loop
  }
 

Comments

  (4)  RSS
Freckle
Comments: 38
 
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,826
 
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: 761
 
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
}
}

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom