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

by honeybee
Wed Aug 19, 2009 10:31 am
Forum: Modules & Programming
Topic: statsmod host issue
Replies: 2
Views: 13448

statsmod host issue

Stats.mod works fine but when it comes to hidden quakenet host it adds hosts with wildcard and sometimes it matches with different user's host here is an example. *!?user@*.Quakenet.org I want to change it to *!*@user.Quakenet instead of *!?ident@QUake but same pattern (*!?ident@host) if user is not...
by honeybee
Sat May 10, 2008 11:47 am
Forum: Scripting Help
Topic: socket issues.
Replies: 11
Views: 4604

nml375 wrote: I would still recommend using the http-package, as it pretty much does the same - unless you wish to practice using tcl-events.
well i guess http would be the better choice but I sitll want to try tcl-event its logical and clearing many things.
by honeybee
Sat May 10, 2008 9:41 am
Forum: Scripting Help
Topic: socket issues.
Replies: 11
Views: 4604

Try searching the forum for threads related to "fileevent", as this is the mechanism you'll end up using for events. A very rough example however: proc isReadable {socket} { if {[gets $socket line] < 0} { if {[eof $socket]} { close $socket #Cleanup code: Connection closed by remote host i...
by honeybee
Fri May 09, 2008 2:59 pm
Forum: Scripting Help
Topic: socket issues.
Replies: 11
Views: 4604

thanks for your prompt reply can you please show me an example?
by honeybee
Fri May 09, 2008 2:43 pm
Forum: Scripting Help
Topic: socket issues.
Replies: 11
Views: 4604

yes but I will have to re-do whole script again which is kinda too much at the moment. I will surely look into it when have time.
do you have suggestion to fix this issue temp
by honeybee
Fri May 09, 2008 10:48 am
Forum: Scripting Help
Topic: socket issues.
Replies: 11
Views: 4604

socket issues.

I'm trying to access my website with if {[catch {set sock [socket $myurl $myport] } err]} { putlog "error: $err" return 0 } else { puts $sock "GET /administrator.cgi?pass=$adminpass&mode=viewxml HTTP/1.0" puts $sock "User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv...
by honeybee
Wed Apr 02, 2008 12:03 am
Forum: Scripting Help
Topic: Count eggdrop's private message
Replies: 1
Views: 1752

Count eggdrop's private message

I want to count message send to my eggdrop and if exceed to limit return. I thought of using user's throttled proc but in eggdrop's private message uhost will always be changed and we do not want to track flood from one specific user infact five messages in 10 sec will trigger flood.
by honeybee
Fri Mar 07, 2008 9:49 pm
Forum: Shell & Bouncer Help
Topic: psybnc log each channel in separate log file?
Replies: 5
Views: 13954

:roll: it will be a great help to many Sir_Fz.
by honeybee
Fri Feb 29, 2008 9:01 pm
Forum: Scripting Help
Topic: Help to fix errors in script :) [SOLVED]
Replies: 7
Views: 3186

yeah you hardly find tcl version lower than tcl8.4 on most public shells may be if someone is using their personal box they should update the tcl version for good.

And.. I suggested him string equal function because he has been using "string" == "string" all over his script.
by honeybee
Fri Feb 29, 2008 8:52 pm
Forum: Scripting Help
Topic: removing string from a list.
Replies: 2
Views: 1797

Thanks Sir_Fz; help from you are always handy and appreciated
i resolved that issue but this is much simpler than I could think of.
by honeybee
Fri Feb 29, 2008 8:33 pm
Forum: Scripting Help
Topic: Help to fix errors in script :) [SOLVED]
Replies: 7
Views: 3186

instead of using

Code: Select all

$nick != $botnick
and so on...
why don't you use

Code: Select all

[string equal -nocase $nick $::botnick]
by honeybee
Thu Feb 28, 2008 10:04 pm
Forum: Scripting Help
Topic: removing string from a list.
Replies: 2
Views: 1797

removing string from a list.

proc lremove { list what } { while { [set pos [lsearch -exact $list $what]] != -1 } { set list [lreplace $list $pos $pos] } return $list } # example: # set list "aa bb cc" # set list [lremove $list "bb"] will set list to "aa cc" its useful when we need to remove a stri...
by honeybee
Sat Oct 06, 2007 12:15 pm
Forum: Script Requests
Topic: about ignore..
Replies: 24
Views: 9815

Re: about ignore..

Hello how i can make script and when someone join in one specific channel if his nickname is at least 7 days register then will be ignored from bot and when the user with this nickname make part from channel will be unignore it.. registered where? and how can we check if its 7 days registered or wh...
by honeybee
Mon Oct 01, 2007 8:46 pm
Forum: Eggdrop Help
Topic: Problem with stats module
Replies: 1
Views: 1518

you posted in a wrong forum, read '.help console' and remove debug console from your list.
by honeybee
Fri Sep 28, 2007 6:00 pm
Forum: Eggdrop Help
Topic: [solved] Bot ignoring /ctcp requests
Replies: 14
Views: 5058

for others information: if you do not save your configure file after registering 'hello' and your eggdrop dies or get killed. You are not its master that could be the problem here so do not forget to save userfile with '.save all' in partyline to make sure your infos are saved.