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

	<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-04-12T03:30:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[JingYou]]></name></author>
		<updated>2002-04-12T03:30:00-04:00</updated>

		<published>2002-04-12T03:30:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6148#p6148</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6148#p6148"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6148#p6148"><![CDATA[
Mordred, great job, and now its finally working! woohoo~ thanks lot pal~<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=205">JingYou</a> — Fri Apr 12, 2002 3:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2002-04-11T15:17:00-04:00</updated>

		<published>2002-04-11T15:17:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6144#p6144</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6144#p6144"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6144#p6144"><![CDATA[
This is not directed specifically at JingYou, but I've noticed a number of old threads are being brought back to the top by their authors with "hello? anyone?" type posts after a week or two of inactivity. I'm not sure if this practice (hogging exposure) is fair. I'm only slightly bothered, but if anyone is really annoyed by it, please let me know.<br><br>&lt;font size=-1&gt;[ This Message was edited by: slennox on 2002-04-11 13:17 ]&lt;/font&gt;<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Thu Apr 11, 2002 3:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-11T15:14:00-04:00</updated>

		<published>2002-04-11T15:14:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6143#p6143</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6143#p6143"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6143#p6143"><![CDATA[
The only thing that troubles me with your example is all the braces around variables.<br>I don't understand the significance of the braces, but I dont see why they need to be there. Otherwise the proc should work. So have you tried like so?:<br><br># Channel <br>set channel "#chan1 #chan2"<br><br># Time <br>set time 1 <br><br># AD-Text 1 <br>set text "TESTIN" <br><br>set a "$botnick" <br>set a [string tolower "$nick"]<br><br>if {![info exists ald]} { <br>set ald 1 <br>timer $time go <br>}<br><br>proc go {} { <br>global a channel time text <br>foreach chan $channel { <br>putserv "PRIVMSG $chan :$text" <br>timer $time go <br><br>} <br>} <p>Statistics: Posted by Guest — Thu Apr 11, 2002 3:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JingYou]]></name></author>
		<updated>2002-04-11T11:04:00-04:00</updated>

		<published>2002-04-11T11:04:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6137#p6137</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6137#p6137"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6137#p6137"><![CDATA[
Guyz.. PLZ HELP OUT IM DEAD WANTIN TO KNOW HOW TO FIX HELP OUT MAN!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=205">JingYou</a> — Thu Apr 11, 2002 11:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JingYou]]></name></author>
		<updated>2002-03-29T01:36:00-04:00</updated>

		<published>2002-03-29T01:36:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5768#p5768</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5768#p5768"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5768#p5768"><![CDATA[
Try 1:<br><br># Channel<br>set channel [channels]<br><br># Time<br>set time 1<br><br># AD-Text 1<br>set text "TESTIN"<br><br>set a "$botnick"<br>set a  [string tolower ${nick}]<br>if {![info exists {ald}]} {<br>global a chan time text<br>set ald 1<br>timer ${time} go<br>}<br>proc go {} {<br>global a channel time text<br>foreach chan $channel {<br>putserv "PRIVMSG $chan :$text"<br>timer ${time} go<br><br>}<br>}<br><br>Try 2:<br><br># Channel<br>set channel [channels]<br><br># Time<br>set time 1<br><br># AD-Text 1<br>set text "TESTIN"<br><br>set a "$botnick"<br>set a  [string tolower ${nick}]<br>if {![info exists {ald}]} {<br>global a chan time text<br>set ald 1<br>timer ${time} go<br>}<br>proc go {} {<br>global a channel time text<br>foreach chan [channels] {<br>putserv "PRIVMSG $chan :$text"<br>timer ${time} go<br><br>}<br>}<br><br>Ain't working pals.. anyone here wanna take up a challenge ?<br><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=205">JingYou</a> — Fri Mar 29, 2002 1:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2002-03-28T14:01:00-04:00</updated>

		<published>2002-03-28T14:01:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5755#p5755</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5755#p5755"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5755#p5755"><![CDATA[
set channel [channels]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Thu Mar 28, 2002 2:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JingYou]]></name></author>
		<updated>2002-03-28T08:13:00-04:00</updated>

		<published>2002-03-28T08:13:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5745#p5745</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5745#p5745"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5745#p5745"><![CDATA[
Guyz.. ain't working! The bot doesn't say anything. Theres a command that i once remembered but not for now, which is to make the bot do global advertise instead of manually edit and add channel in TCL.<br><br>Pals, out there, any idea?<br><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=205">JingYou</a> — Thu Mar 28, 2002 8:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-28T00:04:00-04:00</updated>

		<published>2002-03-28T00:04:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5741#p5741</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5741#p5741"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5741#p5741"><![CDATA[
Or try<br><br>foreach chan [channels]<p>Statistics: Posted by Guest — Thu Mar 28, 2002 12:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-28T00:01:00-04:00</updated>

		<published>2002-03-28T00:01:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5740#p5740</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5740#p5740"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5740#p5740"><![CDATA[
You should just be able to do:<br><br>set channel "#channel1 #channel 2" etc.<p>Statistics: Posted by Guest — Thu Mar 28, 2002 12:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JingYou]]></name></author>
		<updated>2002-03-27T06:35:00-04:00</updated>

		<published>2002-03-27T06:35:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5727#p5727</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5727#p5727"/>
		<title type="html"><![CDATA[How do i make this script ADV in all channels !?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5727#p5727"><![CDATA[
# Channel<br>set channel "#JingYou"<br><br># Time<br>set time 1 <br><br># AD-Text 1<br>set text "TESTIN"<br><br>set a "$botnick" <br>set a  [string tolower ${nick}]<br>if {![info exists {ald}]} {<br>global a chan time text<br>set ald 1<br>timer ${time} go <br>}<br>proc go {} { <br>global a channel time text <br>foreach chan $channel { <br>putserv "PRIVMSG $chan :$text" <br>timer ${time} go<br><br>} <br>}<br><br>--- End ---<br>I had tried many ways, and it juz ends up not saying anything in background.. <br>Peeps, how do ya make this script advertise on all channels that it is on?<br><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=205">JingYou</a> — Wed Mar 27, 2002 6:35 am</p><hr />
]]></content>
	</entry>
	</feed>
