mIRC Homepage
Posted By: Deep3D how to... - 19/04/03 04:12 PM
how to get a list over none voiced ppl in a channel?
I don't remember it.. :P $somthing grin
Posted By: _D3m0n_ Re: how to... - 19/04/03 04:49 PM
$nick($chan,0,v) ??? u mean something like that?
Posted By: Cheech Re: how to... - 19/04/03 04:54 PM
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
Posted By: Nimue Re: how to... - 19/04/03 05:10 PM
$nick($chan,0,r) = regular users
$nick($chan,0,a,v) = non-voiced (can include ops, hops, owners, ..)
Posted By: Cheech Re: how to... - 19/04/03 05:25 PM
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 .
Posted By: Deep3D Re: how to... - 19/04/03 11:09 PM
i am making a bot that's voicing ppl after 2 min's if they dont have voice allready. help?
Posted By: rela Re: how to... - 20/04/03 08:57 AM
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:
Posted By: Deep3D Re: how to... - 20/04/03 10:47 AM
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
}
Posted By: a_th3ory Re: how to... - 21/04/03 02:42 PM
You COULD use $address($nick,1) instead of $nick, so that it recognizes the user if he changes his nickname
Posted By: Deep3D Re: how to... - 21/04/03 11:41 PM
hmm, that dosent work shocked
© mIRC Discussion Forums