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.
Old posts that have not been replied to for several years.
MiKaL
Voice
Posts: 11 Joined: Fri Nov 29, 2002 1:23 pm
Post
by MiKaL » Tue Feb 18, 2003 3:18 pm
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???
Papillon
Owner
Posts: 724 Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no
Post
by Papillon » Tue Feb 18, 2003 3:20 pm
you could write one
Elen sila lúmenn' omentielvo
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Tue Feb 18, 2003 4:47 pm
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"
}
}