Jethro commented on a Page, Unique Auto Voicer  -  Sep 04, 2009

@Taerar: You can do it this way:

on @!*:JOIN:#channel: {
  var %x = $isupper($left($regsubex($nick,/\W+/g,$null),1))
  mode $chan $iif(!%x,-v $nick,+v $nick)
}
on !@*:NICK: {
  var %x = $isupper($left($regsubex($newnick,/\W+/g,$null),1))
  if ($newnick ison #channel) && (%x) { mode #channel $iif(%x,+v $newnick) }
  else { mode #channel -v $newnick } 
}

Change #channel to your actual channel name

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.