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

	<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-10-15T18:10:55-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-15T18:10:55-04:00</updated>

		<published>2003-10-15T18:10:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28544#p28544</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28544#p28544"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28544#p28544"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>## interval between each message in minutes set intsecs "45" ## message to send set chanmsg "your message" timer $intsecs [list message:tochan] proc message:tochan {} { foreach chan [channels] {  putserv "PRIVMSG $chan :$::chanmsg"  } timer $::intsecs [list message:tochan] }</code></pre></div>although the utimer should work fine, but try this.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Oct 15, 2003 6:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bytez]]></name></author>
		<updated>2003-10-14T17:37:57-04:00</updated>

		<published>2003-10-14T17:37:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28498#p28498</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28498#p28498"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28498#p28498"><![CDATA[
I changed timer to utime, restarted the bot, it still says stuff to the channel at different times, I put 2700 seconds but the bot says stuff in 24 minutes, 21 minutes.  The first time, it says in 45 minutes but afterwards, it ignores the 2700 I set in the file.   <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=3647">Bytez</a> — Tue Oct 14, 2003 5:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-13T08:39:54-04:00</updated>

		<published>2003-10-13T08:39:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28383#p28383</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28383#p28383"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28383#p28383"><![CDATA[
yes, sorry my bad.<br><br>you must put the timer in minutes, unless you want it to be in seconds then change <strong class="text-strong">timer</strong> to <strong class="text-strong">utimer</strong>.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Mon Oct 13, 2003 8:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[BarkerJr]]></name></author>
		<updated>2003-10-12T21:31:28-04:00</updated>

		<published>2003-10-12T21:31:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28361#p28361</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28361#p28361"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28361#p28361"><![CDATA[
I think you have two issues:<br><br>1) You're using timer, rather than utimer.<br><br>2) You're rehashing rather than restarting.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2933">BarkerJr</a> — Sun Oct 12, 2003 9:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bytez]]></name></author>
		<updated>2003-10-12T18:17:56-04:00</updated>

		<published>2003-10-12T18:17:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28355#p28355</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28355#p28355"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28355#p28355"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>## interval between each message in secondsset intsecs "2700"## message to sendset chanmsg "\00304,12If you are receiving spam from other people in private message, ignore them\003."timer $intsecs [list message:tochan]proc message:tochan {} {foreach chan [channels] { putserv "PRIVMSG $chan :$::chanmsg" }timer $::intsecs [list message:tochan]}</code></pre></div>the bot says the message but the bot will say it to the channel at random intervals, 3 minutes, 6 miinutes, it totally ignores the interval I set at the top.  I only had the script up for an hour or so.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3647">Bytez</a> — Sun Oct 12, 2003 6:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-08T10:07:37-04:00</updated>

		<published>2003-10-08T10:07:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28158#p28158</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28158#p28158"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28158#p28158"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>## interval between each message in secondsset intsecs "60"## message to sendset chanmsg "your message"timer $intsecs [list message:tochan]proc message:tochan {} {foreach chan [channels] { putserv "PRIVMSG $chan :$::chanmsg" }timer $::intsecs [list message:tochan]}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Oct 08, 2003 10:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bytez]]></name></author>
		<updated>2003-10-07T23:18:40-04:00</updated>

		<published>2003-10-07T23:18:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28145#p28145</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28145#p28145"/>
		<title type="html"><![CDATA[say script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28145#p28145"><![CDATA[
Hi, I want my bot to say a message to the bot every x seconds.  Which script will do that?  I tried a search but to no avail.  Don't need a DCC command, just a basic script that repeats text on a specified channel.  thanks.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3647">Bytez</a> — Tue Oct 07, 2003 11:18 pm</p><hr />
]]></content>
	</entry>
	</feed>
