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

	<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>2003-02-11T16:43:55-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-02-11T16:43:55-04:00</updated>

		<published>2003-02-11T16:43:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16457#p16457</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16457#p16457"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16457#p16457"><![CDATA[
It works great <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> thx a lot.<p>Statistics: Posted by Guest — Tue Feb 11, 2003 4:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-02-11T12:58:45-04:00</updated>

		<published>2003-02-11T12:58:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16435#p16435</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16435#p16435"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16435#p16435"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub - !bla post_the_url bind pub - !bla2 post_the_url bind pub - !bla3 post_the_url set url(1) "http:www.bla.com" set url(2) "http:www.bla.org" set url(3) "http:www.bla.net" set url(channel) "#somechannel"proc post_the_url {nick host hand chan arg} {   global lastbind url   if {[string tolower $chan] != $url(channel)} {return 0}  switch -exact -- $lastbind {     "!bla" { putserv "PRIVMSG $nick :$url(1)" }     "!bla2" { putserv "PRIVMSG $nick :$url(2)" }     "!bla3" { putserv "PRIVMSG $nick :$url(3)" }   } }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Tue Feb 11, 2003 12:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-02-11T10:47:11-04:00</updated>

		<published>2003-02-11T10:47:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16429#p16429</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16429#p16429"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16429#p16429"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>bind pub - !bla post_the_urlbind pub - !bla2 post_the_urlbind pub - !bla3 post_the_urlset url(1) "http:www.bla.com"set url(2) "http:www.bla.org"set url(3) "http:www.bla.net"proc post_the_url {nick host hand chan arg} {  global lastbind url  switch -exact -- $lastbind {    "!bla" { putserv "PRIVMSG $nick :$url(1)" }    "!bla2" { putserv "PRIVMSG $nick :$url(2)" }    "!bla3" { putserv "PRIVMSG $nick :$url(3)" }  }}</code></pre></div>this should do the trick</div></blockquote>wow i really needed this, thx a lot, very nice of you, thx <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>one small thing, is it possible to only show this to group of persons ? i have a normal channel and a private channel, and people in the normal aren't allowed tho see the urls. can i bind it to 1 channel, so !bla only works in one channel and not in both ?<p>Statistics: Posted by Guest — Tue Feb 11, 2003 10:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-02-11T09:45:33-04:00</updated>

		<published>2003-02-11T09:45:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16427#p16427</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16427#p16427"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16427#p16427"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub - !bla post_the_urlbind pub - !bla2 post_the_urlbind pub - !bla3 post_the_urlset url(1) "http:www.bla.com"set url(2) "http:www.bla.org"set url(3) "http:www.bla.net"proc post_the_url {nick host hand chan arg} {  global lastbind url  switch -exact -- $lastbind {    "!bla" { putserv "PRIVMSG $nick :$url(1)" }    "!bla2" { putserv "PRIVMSG $nick :$url(2)" }    "!bla3" { putserv "PRIVMSG $nick :$url(3)" }  }}</code></pre></div>this should do the trick<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Tue Feb 11, 2003 9:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-02-11T07:42:25-04:00</updated>

		<published>2003-02-11T07:42:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16426#p16426</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16426#p16426"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16426#p16426"><![CDATA[
Yes there are a lot op pub command tcl scripts at the tcl section. ive seen them all, but all the scripts have to many functions like !op !deop etc. all sort of that. but that stuff i don't wanna have at the same tcl i already have some sort of that.<p>Statistics: Posted by Guest — Tue Feb 11, 2003 7:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spock]]></name></author>
		<updated>2003-02-10T19:04:04-04:00</updated>

		<published>2003-02-10T19:04:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16407#p16407</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16407#p16407"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16407#p16407"><![CDATA[
i imagine that the tcl archive @ egghelp.org is full of pub command scripts. if you are unable to obtain one, someone will post a solution<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2369">spock</a> — Mon Feb 10, 2003 7:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-02-10T06:10:07-04:00</updated>

		<published>2003-02-10T06:10:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=16383#p16383</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=16383#p16383"/>
		<title type="html"><![CDATA[need help for small url script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=16383#p16383"><![CDATA[
first of all, im new here and my english sucks a little <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><br>I have a little problem. I need a simple tcl what do a little command for me.<br><br>For example.<br>If i do !blaat the bot give me a url. he just have to give me a url i selected.<br>I want a couple of !commands, maybe 3 or so and each of them will give me the url i have early bind to that ! command<br><br>Does this script exist ? (i can't script but i think this is a very small script ? or am i wrong  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><p>Statistics: Posted by Guest — Mon Feb 10, 2003 6:10 am</p><hr />
]]></content>
	</entry>
	</feed>
