<?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/7441" />

	<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>2004-05-11T04:40:41-04:00</updated>

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

		<entry>
		<author><name><![CDATA[CoMMy]]></name></author>
		<updated>2004-05-11T04:40:41-04:00</updated>

		<published>2004-05-11T04:40:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36275#p36275</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36275#p36275"/>
		<title type="html"><![CDATA[Need to get a file from Webpage.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36275#p36275"><![CDATA[
Is this what you mean?<br><div class="codebox"><p>Code: </p><pre><code>source lib/tcl8.4/http2.4/http.tcl bind pub m !update update:pub proc update:pub {nick uhost hand chan arg} {   set out [lindex $arg 0]   set url [lindex [split $arg] 1]   set fid [open $out w+]   fconfigure $fid -translation binary   set body [http::data [set token [http::geturl $url -binary 1 -timeout 9999]]]   puts $fid $body   close $fid   http::cleanup $token   putquick "NOTICE $nick :Download complete." }</code></pre></div>I figured out everything. But the problem is that i want to replace the $out file, for ex. (scripts/mytcl.tcl) and replace it with the url i specify to the bot.<br><br>How can i do this ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3555">CoMMy</a> — Tue May 11, 2004 4:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2004-05-10T22:00:21-04:00</updated>

		<published>2004-05-10T22:00:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36270#p36270</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36270#p36270"/>
		<title type="html"><![CDATA[Need to get a file from Webpage.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36270#p36270"><![CDATA[
check this forum i allready asked something like that and as i recall user or papillion think it was papillion not sur posted it to me<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Mon May 10, 2004 10:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2004-05-10T12:18:12-04:00</updated>

		<published>2004-05-10T12:18:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36252#p36252</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36252#p36252"/>
		<title type="html"><![CDATA[Need to get a file from Webpage.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36252#p36252"><![CDATA[
use the http package<br>or the socket commands<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Mon May 10, 2004 12:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CoMMy]]></name></author>
		<updated>2004-05-10T10:30:09-04:00</updated>

		<published>2004-05-10T10:30:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36249#p36249</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36249#p36249"/>
		<title type="html"><![CDATA[Need to get a file from Webpage.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36249#p36249"><![CDATA[
i know the exec wget command.<br><br>I just need it for a windows compatible bot. Windrop.<br><br>Anyone ? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cry.gif" width="15" height="15" alt=":cry:" title="Crying or Very sad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3555">CoMMy</a> — Mon May 10, 2004 10:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CoMMy]]></name></author>
		<updated>2004-05-09T11:40:21-04:00</updated>

		<published>2004-05-09T11:40:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36227#p36227</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36227#p36227"/>
		<title type="html"><![CDATA[Need to get a file from Webpage.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36227#p36227"><![CDATA[
Need some help again.<br><br>I tried searching about a topic which would help me figure out this, i found one but it didnt help.<br>If there is another topic please guide me to it. I really need to add this to my script.<br><br>Im trying to get a file from an http site and replace a tcl in the scripts dir.<br><br>In the other topic i found it said about the netbots tcl. I opened that script but didnt get any help on how to do this.<br><br>Can you help?<br><br>Thanks <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3555">CoMMy</a> — Sun May 09, 2004 11:40 am</p><hr />
]]></content>
	</entry>
	</feed>
