mIRC Home    About    Download    Register    News    Help

Print Thread
#20087 19/04/03 04:12 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
how to get a list over none voiced ppl in a channel?
I don't remember it.. :P $somthing grin

#20088 19/04/03 04:49 PM
Joined: Dec 2002
Posts: 1,527
_
Hoopy frood
Offline
Hoopy frood
_
Joined: Dec 2002
Posts: 1,527
$nick($chan,0,v) ??? u mean something like that?


D3m0nnet.com
#20089 19/04/03 04:54 PM
Joined: Dec 2002
Posts: 332
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Dec 2002
Posts: 332
not to sure but i think he meant users who were not voiced ?
anyhow that would be like
$nick($chan,0,r)
if you need more help take a look at
/help $nick

#20090 19/04/03 05:10 PM
Joined: Dec 2002
Posts: 699
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Dec 2002
Posts: 699
$nick($chan,0,r) = regular users
$nick($chan,0,a,v) = non-voiced (can include ops, hops, owners, ..)

#20091 19/04/03 05:25 PM
Joined: Dec 2002
Posts: 332
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Dec 2002
Posts: 332
ah yeah that will work as well but i was assuming he was just wanting nonvoiced no oped etc..but perhaps your is correct and anyhow prolly better to do it like that anyhow and just add in the o and h params .

#20092 19/04/03 11:09 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
i am making a bot that's voicing ppl after 2 min's if they dont have voice allready. help?

#20093 20/04/03 08:57 AM
Joined: Jan 2003
Posts: 45
R
Ameglian cow
Offline
Ameglian cow
R
Joined: Jan 2003
Posts: 45
something like:

on 1:join:#channel:{
set %voicenick $nick
.timerforvoice 1 120 /timedvoice
}
alias timedvoice {
if ( %voicenick ison #channel ) {
if ( %voicenick isvoice #channel ) { halt }
else { /mode #channel +v %voicenick }
}
}

only, when someone else joines within those 2 minutes, there will no voice be given to the first, still need that to figger that out :tongue:


@#botwars @Kreynet
#20094 20/04/03 10:47 AM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
i have made the auto voice after 2 mins.. but if the dude changs his nick whitin the 2 mins he don't get voice!!

So like:: ( i have also made a alias voice )

Code:
 
on *:nick: {
  voice $chan $nick
}

#20095 21/04/03 02:42 PM
Joined: Apr 2003
Posts: 9
A
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
A
Joined: Apr 2003
Posts: 9
You COULD use $address($nick,1) instead of $nick, so that it recognizes the user if he changes his nickname

#20096 21/04/03 11:41 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
hmm, that dosent work shocked


Link Copied to Clipboard