mIRC Homepage
Posted By: Kalavani Auto Hop for a nick - 01/05/11 08:30 AM
I need a script which sets hop for a particular nick when that nick joins a particular channel. Can anyone help me out?
Posted By: RusselB Re: Auto Hop for a nick - 01/05/11 11:13 AM
Code:
on @*:join:#:{
  if ($nick == <Nick>) { .mode # +h $nick }
}

Replace <Nick> with the actual nick.
Posted By: Tomao Re: Auto Hop for a nick - 01/05/11 10:07 PM
Quote:
joins a particular channel
If you only want the script to watch out for a single channel, change the on join bit to this:
Quote:
on @*:join:#YourParticularChannel:{
where you replace #YourParticularChannel with the channel intended.
© mIRC Discussion Forums