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

by et109
Sun Mar 04, 2007 1:13 pm
Forum: Scripting Help
Topic: First try using namespace
Replies: 4
Views: 3099

Specific problems

In truth I did have 2 specific problems with the code. You either saw the bind problem or sensed it. A careful reading of the quote you posted brought me the solution to it. I had not included a host mask in the bind. The second problem was with the timer, or rather the finding and killing of it. Th...
by et109
Sat Mar 03, 2007 10:23 pm
Forum: Scripting Help
Topic: First try using namespace
Replies: 4
Views: 3099

binds innamespace at bottom

should I put the flag defs inside the namespace also? Also I just added binds for the join event in my copy here. I put them in the "firstpass" section of the Solobot::Execute proc does this look copacetic? #first pass through channels if {$firstpass} { variable firstpass 0 foreach chan [:...
by et109
Sat Mar 03, 2007 5:43 pm
Forum: Scripting Help
Topic: First try using namespace
Replies: 4
Views: 3099

First try using namespace

This is my first attempt at using namespaces, and I would really appreciate any comments or advice. (especially with the timer stuff) TIA ############################################################################################### #namespace Solobot #Checks for availability of bot's user's (on bo...
by et109
Fri Mar 02, 2007 8:19 am
Forum: Script Support & Releases
Topic: botcrap.tcl missing init proc
Replies: 0
Views: 2350

botcrap.tcl missing init proc

On 02/25/06 a game script I wrote "botcrap.tcl was added to the script archive. The uploaded copy was missing the init proc and doesn't work. I have since resubmitted the correct files.
I apologize for the oversight. :oops:
by et109
Tue Feb 27, 2007 2:33 pm
Forum: Scripting Help
Topic: Doing a whois to print out to a file
Replies: 7
Views: 4076

whois info

if the code you are using is a match to this code, you have a typo in proc whois:info

Code: Select all

      set host [lindex [spllit $arguments] 3]
should be

Code: Select all

      set host [lindex [split $arguments] 3]
by et109
Tue Feb 27, 2007 2:23 pm
Forum: Scripting Help
Topic: !stats responce in chan
Replies: 5
Views: 3667

!stats !logs problem

this works okay here bind pub - !logs logs_msg bind pub - !stats stats_msg proc logs_msg { nick uhost hand chan text } { puthelp "NOTICE $nick :Channel Logs can be read at" puthelp "NOTICE $nick :http://myurl.com/~leader/logs/$chan" return 0 } proc stats_msg {nick uhost hand chan...
by et109
Sun Feb 25, 2007 10:07 am
Forum: Eggdrop Help
Topic: TelNet console [Solved]
Replies: 3
Views: 3132

telnet

looks like a port problem, have you checked the port when you start PuTTy ? It defaults to port 23 for telnet, you have to use the port you setup in eggdrop.conf. : # Valid ports are typically anything between 1025 and 65535 assuming the # port is not already in use. # # If you would like the bot to...