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.

Search found 4 matches

by natter
Sat Sep 03, 2005 4:27 am
Forum: Archive
Topic: no manual BAN tcl
Replies: 4
Views: 4638

no manual BAN tcl

I want to add this feature at my tcl : If guest_user add ban , Bot deop and remove ban I try with ... proc no_manual_add_ban {nick uhost hand chan mode ban} { if {(![matchattr $hand b]) && (![matchattr $hand n])} { pushmode $chan -o $nick putlog "Manual ban on $chan - Ban : $ban" p...
by natter
Fri Sep 02, 2005 12:47 pm
Forum: Archive
Topic: no manual op TCL HELP !!!
Replies: 5
Views: 4847

Code: Select all

if {([matchattr nick2hand $victim b]) || ([matchattr nick2hand $victim n])}
im a newbie :lol:
by natter
Fri Sep 02, 2005 12:32 pm
Forum: Archive
Topic: no manual op TCL HELP !!!
Replies: 5
Views: 4847

How ?
by natter
Fri Sep 02, 2005 12:19 pm
Forum: Archive
Topic: no manual op TCL HELP !!!
Replies: 5
Views: 4847

no manual op TCL HELP !!!

I create a simple tcl to prevent manual op on chan : bind mode - *+o* no_manual_op proc no_manual_op {nick uhost hand chan mode victim} { if {([matchattr $hand b]) || ([matchattr $hand n])} { putlog "Manual OP on $chan by $nick for $victim" } else { putserv "MODE $chan -o $nick" ...