This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

auto voice only lower case nicks

Old posts that have not been replied to for several years.
Locked
M
MiKaL
Voice
Posts: 11
Joined: Fri Nov 29, 2002 1:23 pm

auto voice only lower case nicks

Post by MiKaL »

I have looked through the tcl archive and through this forum hoping for someone to mention a script that will only voice nicks that are in lower case. Any ideas where else I can look???
User avatar
Papillon
Owner
Posts: 724
Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no

Post by Papillon »

you could write one ;)
Elen sila lúmenn' omentielvo
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Code: Select all

bind join - "*" avoice:lowercase
proc avoice:lowercase {nick uh hand chan} {
  if {[string equal [string tolower $nick] $nick]} {
    putserv "MODE $chan +v $nick"
  }
}
Locked