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.

devoice users after 1 line spoken

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
R
Ra0uL
Voice
Posts: 3
Joined: Thu Mar 23, 2006 10:07 am

devoice users after 1 line spoken

Post by Ra0uL »

Hi !

I need a script who devoice users who have spoken one line only.
Please, help me !!!
I need it badly !!

Thx for your help & your hard works
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

That makes nosense. if he doesn't type anything, he remains voiced else he gets devoiced. Do you mean you want to devoice idle voices?
R
Ra0uL
Voice
Posts: 3
Joined: Thu Mar 23, 2006 10:07 am

Post by Ra0uL »

No No, it s not for idle users...

It s for a +m chan.
Only few users must be voiced at the same time.
& after they have send 1 line (a question for example), they re devoiced.
I want the peoples can send only one question & wait for answer before asking another one.
I hope this explaination is better. :-)

Thx
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Code: Select all

bind pubm - "#channel *" devoice

proc devoice {nick uhost hand chan arg} {
 if {[isvoice $nick $chan]} {
  pushmode $chan -v $nick
 }
}
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Ra0uL wrote:No No, it s not for idle users...

It s for a +m chan.
Only few users must be voiced at the same time.
& after they have send 1 line (a question for example), they re devoiced.
I want the peoples can send only one question & wait for answer before asking another one.
I hope this explaination is better. :-)

Thx
You are fully aware that any non-voiced users in a +m (moderated) channel cannot sent to channel? So, how does one get to ask just one question in the first place let alone a second?
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
R
Ra0uL
Voice
Posts: 3
Joined: Thu Mar 23, 2006 10:07 am

Post by Ra0uL »

Many thx Sir_Fz !!!
It s works well

Alchera, the users are authentified via services & can only join this chan if they re registred. And each user must ask only one question...so, easy to manage.

Thx for u re help
Post Reply