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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
-
tahu
- Voice
- Posts: 14
- Joined: Fri Feb 11, 2005 10:45 pm
- Location: bandung
-
Contact:
Post
by tahu »
anyone can help me to make tcl protect user with voice no got kick when type 6 or more line in channel ?
thanks if u want help me
no limit to learn
-
Sir_Fz
- Revered One
- Posts: 3794
- Joined: Sun Apr 27, 2003 3:10 pm
- Location: Lebanon
-
Contact:
Post
by Sir_Fz »
What's your script? or are you using the built-in flood-chan protection?
-
tahu
- Voice
- Posts: 14
- Joined: Fri Feb 11, 2005 10:45 pm
- Location: bandung
-
Contact:
Post
by tahu »
i build chan games
but if client type answer over 5 line got kick with msg flood even client got +v
no limit to learn
-
demond
- Revered One
- Posts: 3073
- Joined: Sat Jun 12, 2004 9:58 am
- Location: San Francisco, CA
-
Contact:
Post
by demond »
Code: Select all
bind flud - pub foo
proc foo {n u h t c} {
if [isvoice $n $c] {return 1}
}
connection, sharing, dcc problems? click
<here>
before asking for scripting help, read
<this>
use
-
tahu
- Voice
- Posts: 14
- Joined: Fri Feb 11, 2005 10:45 pm
- Location: bandung
-
Contact:
Post
by tahu »
its work thanks
no limit to learn
-
tahu
- Voice
- Posts: 14
- Joined: Fri Feb 11, 2005 10:45 pm
- Location: bandung
-
Contact:
Post
by tahu »
bind flud - pub foo
proc foo {n u h t c} {
if [isvoice $n $c] {return 1}
}
this script only protect user with + from kick
if u dont mine
can u put code for protect operator from kick
thanks
no limit to learn
-
metroid
- Owner
- Posts: 771
- Joined: Wed Jun 16, 2004 2:46 am
Post
by metroid »
Code: Select all
bind flud - pub foo
proc foo {n u h t c} {
if {[isvoice $n $c] || [isop $n $c]} {return 1}
}