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.

Voice for special nickname characteristics

Old posts that have not been replied to for several years.
Locked
t
tebor
Voice
Posts: 8
Joined: Sun Sep 12, 2004 1:27 am

Voice for special nickname characteristics

Post by tebor »

Hi Community.

The Idea is pritty simple. Voice everybody who as a nickname starting with a Capital letter.

First of course has anybody seen a script that would do just that?

Secondly how would I go about it?

I was thinking take the nickname on join and cut the rest of the string of except first letter then compare if the letter matches A,B,C...Z.
Would something like that work?

Tebor
d
dollar
Op
Posts: 178
Joined: Tue Oct 28, 2003 3:47 pm
Location: Netherlands

Post by dollar »

bind join - "#egghelp *!*@*" moo
proc moo {nick uhost hand chan} {
if {[string is upper [string index $nick 0]]} {
pushmode $chan +v $nick
}
}
Something like that. :p
dollar (or something similar) at:
#eggdrop / #tcl - undernet
#egghelp / #tcl / #eggtcl - efnet
#eggdrop.support / #tcl - quakenet
#eggdrop - ircnet
t
tebor
Voice
Posts: 8
Joined: Sun Sep 12, 2004 1:27 am

Post by tebor »

dollar wrote:
bind join - "#egghelp *!*@*" moo
proc moo {nick uhost hand chan} {
if {[string is upper [string index $nick 0]]} {
pushmode $chan +v $nick
}
}
Something like that. :p

Can I vote you to be my hero? *grins*
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

Hero by Enrique Iglesias? :wink:
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
d
dollar
Op
Posts: 178
Joined: Tue Oct 28, 2003 3:47 pm
Location: Netherlands

Post by dollar »

:mrgreen:
dollar (or something similar) at:
#eggdrop / #tcl - undernet
#egghelp / #tcl / #eggtcl - efnet
#eggdrop.support / #tcl - quakenet
#eggdrop - ircnet
Locked