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
Tue Mar 11, 2008 1:31 pm
Forum: Scripting Help
Topic: My PCW scripts
Replies: 3
Views: 2082

Wait, if you access the file at "/home/to2/website/pw.txt", why do you use the http package?

That seems horribly silly to me.
by metroid
Thu Mar 06, 2008 1:25 pm
Forum: Scripting Help
Topic: [SOLVED] Some questions
Replies: 3
Views: 2024

Re: Question

set $bans_count 0 foreach bans [banlist $chan] { # can use -nocase option below if you wish case to be irrelevant if {[string equal -- [lindex [split $bans] 5] [lindex [split $text] 0]]} { set $bans_count [expr $bans_count + 1] } } if {$bans_count > 0} { puthelp "NOTICE $nick :Handle \002[lind...
by metroid
Mon Mar 03, 2008 1:01 pm
Forum: Scripting Help
Topic: [SOLVED] Some support on a issue
Replies: 3
Views: 2104

I'd also like to advise you against using such a public message command to auth with network services.
by metroid
Sat Mar 01, 2008 7:08 am
Forum: Script Requests
Topic: Proxyscanner
Replies: 14
Views: 9893

You already made a topic about this and you were already answered there.

It's pointless to try again.
by metroid
Mon Feb 25, 2008 6:56 pm
Forum: Script Requests
Topic: Anti TAKEOVER for UnderNet
Replies: 6
Views: 8439

There is no built-in command to for public "!chanset".
by metroid
Fri Feb 22, 2008 12:08 pm
Forum: Script Support & Releases
Topic: http.tcl
Replies: 5
Views: 9234

Unload the script. There is already a HTTP package in the TCL library.

(Use package require http if you don't have it in your script)
by metroid
Fri Feb 22, 2008 12:07 pm
Forum: Script Requests
Topic: I search a Anti Abuse Script
Replies: 2
Views: 3160

Sorry but I don't think anyone will put the time into this to make a website that works with an eggdrop.

Ontop of that, how would your bot find these "abusers"?
by metroid
Fri Feb 22, 2008 9:16 am
Forum: Scripting Help
Topic: 'static' vars, upvar and uplevel
Replies: 6
Views: 3389

Why don't you just use variable?

AFAIK, variable isn't reset after a rehash.

Code: Select all

namespace eval somens {
    variable moo 1
}
by metroid
Fri Feb 22, 2008 9:14 am
Forum: Scripting Help
Topic: list and join problems
Replies: 3
Views: 2414

That's not the full code and it looks like you not using lrange on a valid list.
by metroid
Sun Feb 17, 2008 12:17 pm
Forum: Script Requests
Topic: Auto -mi
Replies: 13
Views: 9567

Forgot about the + in $mode. So that's fixed. And I'm fully aware that MODE only sends 1 mode through which is why I used pushmode. pushmode <channel> <mode> [arg] Description: sends out a channel mode change (ex: pushmode #lame +o goober) through the bot's queuing system. All the mode changes will ...
by metroid
Sun Feb 17, 2008 10:15 am
Forum: Script Requests
Topic: Auto -mi
Replies: 13
Views: 9567

A simple and dynamic form of this script would be: Use ".chanset #channel remove-modes mir" to make the bot remove +mir after <so many> seconds. setudef str remove-modes bind MODE -|- "% +*" check:mode proc check:mode {nickname hostname handle channel mode target} { if {[set remm...
by metroid
Thu Feb 07, 2008 2:20 pm
Forum: Script Requests
Topic: I search a Special Script
Replies: 10
Views: 4296

MC8 has been retired for a long long time.
by metroid
Wed Feb 06, 2008 1:54 pm
Forum: Script Requests
Topic: Probably simple.. But. I cant do it..
Replies: 15
Views: 6732

You should modify info because it'll overwrite the default TCL proc like that.
by metroid
Wed Feb 06, 2008 1:52 pm
Forum: Scripting Help
Topic: Problem with botonchan function
Replies: 8
Views: 4602

And what network are you on?
What IRCd do they use?
by metroid
Fri Feb 01, 2008 1:14 pm
Forum: Script Requests
Topic: simple cycle script
Replies: 11
Views: 4738

That's because eggdrops rejoin their own channels the moment it notices it has parted. setudef flag mycycle bind time - "00 * * * *" my:cycle bind time - "15 * * * *" my:cycle bind time - "30 * * * *" my:cycle bind time - "45 * * * *" my:cycle proc my:cycle {m...