<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/1788" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2002-05-26T09:03:00-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/1788</id>

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-26T09:03:00-04:00</updated>

		<published>2002-05-26T09:03:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7268#p7268</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7268#p7268"/>
		<title type="html"><![CDATA[FTP]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7268#p7268"><![CDATA[
Is there any way to get the exact error given....i.e "Access Denied" or "System cannot find the file specified" etc?<p>Statistics: Posted by Guest — Sun May 26, 2002 9:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-26T08:43:00-04:00</updated>

		<published>2002-05-26T08:43:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7267#p7267</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7267#p7267"/>
		<title type="html"><![CDATA[FTP]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7267#p7267"><![CDATA[
Cheers, thanx alot m8!!!<br><br>&lt;font size=-1&gt;[ This Message was edited by: Jimbo on 2002-05-26 06:45 ]&lt;/font&gt;<p>Statistics: Posted by Guest — Sun May 26, 2002 8:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-26T07:06:00-04:00</updated>

		<published>2002-05-26T07:06:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7264#p7264</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7264#p7264"/>
		<title type="html"><![CDATA[FTP]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7264#p7264"><![CDATA[
It's an exemple of script I've made... I know it's not really the best way but it work <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><br><div class="codebox"><p>Code: </p><pre><code>bind pub - !test ftptest package require ftp proc ftptest {nick uhost hand chan text} {    set server "serverip"   set user "anonymous"    set passwd "me@me.com"    if {[set connection [ftp::Open $server $user $passwd -port 21 -timeout 45]] &gt;= 0} {      set listoffile [ftp::list $connection]     ftp::Close $connection     set countelement "0"     while {$countelement != [llength $listoffile]} {putquick "PRIVMSG #testchannel : [lindex listoffile $countelement]"incr countelement     }      return 0} putserv "PRIVMSG #TestChannel :Could not connect" } </code></pre></div>You can also put "-mode passive" or "-mode active".<p>Statistics: Posted by Guest — Sun May 26, 2002 7:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-25T18:09:00-04:00</updated>

		<published>2002-05-25T18:09:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7259#p7259</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7259#p7259"/>
		<title type="html"><![CDATA[FTP]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7259#p7259"><![CDATA[
Hi...cheers for it...wicked site btw!!!<br>Could u tell me what is wrong with this...<br><br>Code:<br><br>bind pub - !test ftptest<br><br>package require FTP 1.2<br><br>proc ftptest {nick uhost hand chan text} {<br>set server &lt;serverip&gt;<br>set user anonymous<br>set passwd <a href="mailto:me@me.com">me@me.com</a><br>if {[FTP::Open $server $user $passwd -timeout 45]} {<br>foreach line [FTP::list] {<br>putserv "PRIVMSG #TestChannel :$line"<br>}<br>}<br>putserv "PRIVMSG #TestChannel :Could not connect"<br>}<br><br>cheers!!!<p>Statistics: Posted by Guest — Sat May 25, 2002 6:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-25T16:47:00-04:00</updated>

		<published>2002-05-25T16:47:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7258#p7258</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7258#p7258"/>
		<title type="html"><![CDATA[FTP]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7258#p7258"><![CDATA[
This script is with the distribution of TCL 8.3.<br>You can also download it on my site : <a href="http://yews.fr.st/" class="postlink">http://yews.fr.st/</a> (in "Téléchargements" and then "Scripts TCL")<br><br>Ycarus<br><a href="mailto:yews@ifrance.com">yews@ifrance.com</a><br><a href="http://yews.fr.st/" class="postlink">http://yews.fr.st/</a><p>Statistics: Posted by Guest — Sat May 25, 2002 4:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-25T10:35:00-04:00</updated>

		<published>2002-05-25T10:35:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=7250#p7250</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=7250#p7250"/>
		<title type="html"><![CDATA[FTP]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=7250#p7250"><![CDATA[
Hi, i've been told about a tcl script that can open an ftp list it etc....its called ftp.tcl...Where can i get this from??<p>Statistics: Posted by Guest — Sat May 25, 2002 10:35 am</p><hr />
]]></content>
	</entry>
	</feed>
