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 737 matches

by metroid
Sat Jun 28, 2008 9:17 am
Forum: Scripting Help
Topic: on 3r kick = remuser.
Replies: 13
Views: 6543

bind kick - * xstuff:kick proc xstuff:kick {nick host hand chan target reason} { if {[matchattr [nick2hand $target $chan] b|b $chan] || [matchattr [nick2hand $target $chan] o|o $chan]} { set kicker [string trim [lindex [split $reason] 0] {()}] set hand [nick2hand $kicker] if {[matchattr $hand E]} {...
by metroid
Mon Jun 16, 2008 4:46 am
Forum: Script Requests
Topic: Greet script Request
Replies: 14
Views: 5785

Check the TCL Archive.
Plenty of greet scripts out there.
by metroid
Mon May 26, 2008 12:53 pm
Forum: Scripting Help
Topic: Flag except on idle-deop doesn't work.
Replies: 23
Views: 8654

That's because getchanidle is not the same result as what the ircd server may report.
by metroid
Sun May 25, 2008 5:49 pm
Forum: Eggdrop Help
Topic: error and plain text with putnow
Replies: 6
Views: 7400

that error is not related to "putnow".

However, one of your scripts appears to be overwriting the TCL proc "info".

Which is the problem in your case, find out which script it is, and fix it :)
by metroid
Sun May 25, 2008 5:37 pm
Forum: Scripting Help
Topic: AOP with authcheck
Replies: 23
Views: 9552

matchattr is only for internal eggdrop flag checking.

it has NOTHING to do with Q.
Instead you should be smart enough to just not op all users on your channel.
by metroid
Sun May 25, 2008 5:33 pm
Forum: Scripting Help
Topic: Flag except on idle-deop doesn't work.
Replies: 23
Views: 8654

I took the liberty to completely rewrite that script. namespace eval idle { variable author "metroid" variable version "1.0" variable activechans [list #chan1 #chan2 #chan3]; # Idle time in minutes for ops. (set this to 0 to disable) variable idletime 30 # Idle time in minutes fo...
by metroid
Sun May 25, 2008 5:19 pm
Forum: Scripting Help
Topic: A few more Questions:
Replies: 13
Views: 4926

I didn't read nml375's wall of text but you seem to be missing the handle var which is required for pubm binds.

I'd be suprised if your script worked as expected.
by metroid
Tue May 20, 2008 2:51 pm
Forum: Script Requests
Topic: Only founder can add aop..
Replies: 8
Views: 4144

The next snippet is the best solution to your problem:

Code: Select all

STOP GIVING SOP ACCESS TO PEOPLE YOU DO NOT TRUST
by metroid
Mon Apr 28, 2008 2:01 pm
Forum: Eggdrop Help
Topic: Only connects in debug mode.
Replies: 5
Views: 5002

It's a thread problem afaik.

You need to recompile eggdrop with a special switch but I can't remember it.
Hopefully someone else knows it..
by metroid
Fri Apr 25, 2008 3:07 pm
Forum: Script Requests
Topic: Reconnect on identlost ?
Replies: 2
Views: 2803

you should add something so the bot doesn't connect over and over if oidentd fails completely.
by metroid
Wed Apr 02, 2008 3:23 pm
Forum: Scripting Help
Topic: parsing another website
Replies: 2
Views: 2334

though you told him how to use split and join properly, you still didn't fix that nasty lrange. Using lrange $var 0 end is the exact same as not doing anything at all. In this case, you can just use set title $text because "set title [join [lrange [split $text] 0 end]]" quite simply is the...
by metroid
Sun Mar 23, 2008 2:01 am
Forum: Scripting Help
Topic: [solved-ish] prevent sql injection?
Replies: 6
Views: 3520

If you use mysqltcl then mysql::escape should work fine.
by metroid
Wed Mar 19, 2008 4:13 pm
Forum: Script Requests
Topic: [solved] Public chanset command+metroid's bot request script
Replies: 3
Views: 2479

Re: [solved] Public chanset command+metroid's bot request sc

Though this is already solved, you can actually find the full original (and very old) script in the same topic as the ripped one.

I posted it a few posts after.
by metroid
Thu Mar 13, 2008 2:07 pm
Forum: Script Requests
Topic: Help with Command
Replies: 39
Views: 14948

CyberWar wrote:i want a channel command like this: .gline nick reason

metroid: we trust to our team ;)
If you trust your team, why not just oper them?
by metroid
Thu Mar 13, 2008 2:02 pm
Forum: Script Requests
Topic: Help with Command
Replies: 39
Views: 14948

Seriously, if you're going to give "non opered" staff access to a gline command and they make the slightest mistake, you could gline the entire network.

You should instead think really hard how smart that is. (NOTE: your non opered staff could gline anyone, including opers)