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

by Nara
Sun Jun 03, 2007 8:58 pm
Forum: Script Requests
Topic: Simple script
Replies: 1
Views: 1912

Simple script

This script should be super easy. I have a hash table in the format of: $file #Explanation#: Returns information about the specified file. Its properties are size, ctime, mtime, atime, short, long, attr (type /help $file for more detail). #Example#: $file($mircexe).size returns 1867776 in version 6....
by Nara
Sun Apr 08, 2007 10:58 am
Forum: Scripting Help
Topic: Using ? in HTTP grab sockets
Replies: 3
Views: 2565

I honestly have no knowledge of how the http package works or where to obtain it, hence my use of sockets.
by Nara
Fri Apr 06, 2007 8:21 pm
Forum: Scripting Help
Topic: Using ? in HTTP grab sockets
Replies: 3
Views: 2565

Using ? in HTTP grab sockets

Alright, I'm trying to access a server using this code: proc battle:flistenersdata { } { global shoutcast shoutport shoutpass url_ xml_ fd_ state_ set url_ "/radiosite/modules.php?name=Nuke-Cast" set xml_ "" # Setting up timeout length after 3000 set state_ timeout set fd_ [socke...
by Nara
Tue Apr 03, 2007 4:37 pm
Forum: Scripting Help
Topic: UNUSUAL ERROR {SOLVED}
Replies: 4
Views: 2979

I believe it could be that you are not an administrator on that windows box.
by Nara
Sat Mar 17, 2007 10:56 pm
Forum: Scripting Help
Topic: Problem with sendftp.tcl
Replies: 12
Views: 6899

It's behind a firewall, but FTP ports are open. I use a Slackware based distro named Zenwalk. I don't get the error when I manually do it. I have yet to find time to put in sendmode and test it that way.
by Nara
Sat Mar 17, 2007 8:10 pm
Forum: Scripting Help
Topic: Problem with sendftp.tcl
Replies: 12
Views: 6899

I use the base FTP program. If it would assist you, I can give you a root account on my box temporarily and you can check whether or not that's the problem. I'll also check the sendmode and get back to you.
by Nara
Sat Mar 17, 2007 2:46 pm
Forum: Scripting Help
Topic: Problem with sendftp.tcl
Replies: 12
Views: 6899

I am the sysadmin. I just simply have a very limited linux knowledge. Could you tell me what needs to be done?
by Nara
Fri Mar 16, 2007 2:33 pm
Forum: Scripting Help
Topic: Problem with sendftp.tcl
Replies: 12
Views: 6899

Your problem is with the battle:update procedure. You should have posted the script with battle:update in it. The error was quite clear where the problem is: procedure "battle:update" line 2 Here's the code for that: bind pub M @update battle:update proc battle:update { nick host hand cha...
by Nara
Fri Mar 16, 2007 12:05 pm
Forum: Scripting Help
Topic: Problem with sendftp.tcl
Replies: 12
Views: 6899

Here is the script: # # Sendftp v1.01 (12/6/97) by Ernst <ernst@studbox.uni-stuttgart.de> # Ernst's eggdrop page: http://www.sodre.net/ernst/eggdrop/ # ============================================================================= # This is a proc to send a file via FTP to another server. Useful in m...
by Nara
Mon Mar 12, 2007 9:35 pm
Forum: Scripting Help
Topic: Problem with sendftp.tcl
Replies: 12
Views: 6899

Problem with sendftp.tcl

I am using the sendftp protocol and I get this error whenever I use it: [21:36:44] <egln|radiobot> Currently: ftp: bind: Address already in use [21:36:44] <egln|radiobot> Currently: while executing [21:36:44] <egln|radiobot> Currently: "close $pipe" [21:36:44] <egln|radiobot> Currently: (p...
by Nara
Tue Jan 02, 2007 12:31 am
Forum: Scripting Help
Topic: Database question?
Replies: 4
Views: 3555

Because I never knew you could do that. So, just put them in a blank file, name it .tcl, and load it before the script in the eggdrop configuration?
by Nara
Mon Jan 01, 2007 7:31 pm
Forum: Scripting Help
Topic: Database question?
Replies: 4
Views: 3555

Database question?

I currently use a text file that is named as a .dat to store my eggdrop's custom settings and variables, which is loaded and saved on each load. However, it wipes like weekly to bi-weekly. I think it may have something to do with the way I sync or it could be the file system. Yes, mIRC colour codes ...
by Nara
Sun Dec 31, 2006 8:30 pm
Forum: Scripting Help
Topic: Question on making commands slow down
Replies: 2
Views: 2450

Question on making commands slow down

Ok,

I have 4 commands executing right after each other and I want to insert like a 10ms hold between each of them. Is there a command to do that?
by Nara
Sun Nov 26, 2006 8:44 pm
Forum: Scripting Help
Topic: Problem with arrays
Replies: 11
Views: 5732

Alright, this is my solution, but sadly, it doesn't work for the main part (if $nick == $botnick, then find all nicks in chan and set them to 0. bind join - "#century0 *" battle:setnicks array set warned {} proc battle:setnicks {nick uhost handle chan} { global warned botnick if {$nick == ...
by Nara
Sat Nov 25, 2006 11:52 pm
Forum: Scripting Help
Topic: Problem with arrays
Replies: 11
Views: 5732

What's the command to see names in a chan, preferably one I could use like [foreach nick chan]?