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

	<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>2005-02-26T13:48:09-04:00</updated>

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

		<entry>
		<author><name><![CDATA[dossi]]></name></author>
		<updated>2005-02-26T13:48:09-04:00</updated>

		<published>2005-02-26T13:48:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46967#p46967</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46967#p46967"/>
		<title type="html"><![CDATA[simple join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46967#p46967"><![CDATA[
With a few modifications, it works <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":-D" title="Very Happy"> <br><br>Thanks for the help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5819">dossi</a> — Sat Feb 26, 2005 1:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2005-02-26T04:39:45-04:00</updated>

		<published>2005-02-26T04:39:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46939#p46939</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46939#p46939"/>
		<title type="html"><![CDATA[simple join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46939#p46939"><![CDATA[
here is a real simple version<br><div class="codebox"><p>Code: </p><pre><code># master botproc summon_chan {nick host hand chan arg} {  foreach {x} [botlist] {    if {![onchan $x $chan]} {      putbot $x "joinchan $chan"      putserv "PRIVMSG $chan :$x joining channel."      break    }  }}bind pub n !summon summon_chan# slave botproc bot_join_chan {bot cmd arg} {  channel add $arg}bind bot - joinchan bot_join_chan</code></pre></div><br>i think that should do not tested tho<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Sat Feb 26, 2005 4:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dossi]]></name></author>
		<updated>2005-02-24T21:58:30-04:00</updated>

		<published>2005-02-24T21:58:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46904#p46904</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46904#p46904"/>
		<title type="html"><![CDATA[simple join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46904#p46904"><![CDATA[
/me gets confused<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_question.gif" width="15" height="15" alt=":?:" title="Question">  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5819">dossi</a> — Thu Feb 24, 2005 9:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2005-02-23T09:14:29-04:00</updated>

		<published>2005-02-23T09:14:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46865#p46865</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46865#p46865"/>
		<title type="html"><![CDATA[simple join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46865#p46865"><![CDATA[
First what you do is <br><br>make an array with numbers .. using botlist<br><div class="codebox"><p>Code: </p><pre><code>set i 0foreach x [botlist] {  set bots($i) $x  incr i}</code></pre></div>then you generate a rand on when the trigger is activated you call upon the array with indice <br><div class="codebox"><p>Code: </p><pre><code>[rand [llength [botlist]]</code></pre></div>then you use putbot to send a trigger to that bot over the botnet, ..<br><br>so on the trigger !summon the putbots will look like something like this<br><div class="codebox"><p>Code: </p><pre><code>putbot $bots([rand [llength [botlist]]) "JOINCHANNEL $chan"</code></pre></div>the other bot should bind to bot and catch it then you see with switch or something what is wat and add the channel .. using "channel add"<br><br>i think that should help you <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Wed Feb 23, 2005 9:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dossi]]></name></author>
		<updated>2005-02-23T05:09:38-04:00</updated>

		<published>2005-02-23T05:09:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46864#p46864</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46864#p46864"/>
		<title type="html"><![CDATA[simple join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46864#p46864"><![CDATA[
Im' looking for some help in creating a simple join script. If !summon was typed in a channel, the bot would make another bot join the channel. I think this would require a script on each bot. <br><br>ex (in #bots users are lameuser and lamebot): <br>[lameuser] !summon<br>-join- lamebot2 join #bots<br><br>Hope I didn't confuse you -- Any help, direction, tutorial would be appriciated.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5819">dossi</a> — Wed Feb 23, 2005 5:09 am</p><hr />
]]></content>
	</entry>
	</feed>
