mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2003
Posts: 5
A
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
A
Joined: Jul 2003
Posts: 5
Does anyone know how to return the number of people that are on your ignore list?

$ignore(2) for instance returns the 2nd person on the list..
some other identifiers return the total number if you put a zero, like $query(0). Any idea's?

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
alias ignore.count {
var %i 1
var %g 0
while ($ignore(%i) != $null) {
inc %g 1
inc %i
}
//echo -a %g
}
usage: /ignore.count

Last edited by pheonix; 09/07/03 05:11 PM.

new username: tidy_trax
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
$ignore(0) works fine for me on 6.03

Joined: Jul 2003
Posts: 5
A
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
A
Joined: Jul 2003
Posts: 5
Ah, well, both of your suggestions worked, thanks alot smile

Yeah I just noticed it does work, I was doing:
//echo $ignore(0)

And getting an insufficiant paramiters, i needed the -a after the //echo.

Thanks again you two. grin

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
np smile
/me feels like an idiot grin


new username: tidy_trax

Link Copied to Clipboard