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

	<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>2008-03-20T11:44:30-04:00</updated>

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

		<entry>
		<author><name><![CDATA[kwnds]]></name></author>
		<updated>2008-03-20T11:44:30-04:00</updated>

		<published>2008-03-20T11:44:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81928#p81928</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81928#p81928"/>
		<title type="html"><![CDATA[Simple Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81928#p81928"><![CDATA[
Thanks for the help <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=8799">kwnds</a> — Thu Mar 20, 2008 11:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2008-03-18T21:09:34-04:00</updated>

		<published>2008-03-18T21:09:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81894#p81894</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81894#p81894"/>
		<title type="html"><![CDATA[Simple Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81894#p81894"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>####################################################################### SendMsg 1.1 - Send Messages to channels specified every X minutes  ##                                                                    ## Created by WPnL (modified for egghelp forums request by speechles) # # Report bugs to wpnl@lycos.co.uk                                    ## This script is freeware.                                           ## Feel free to edit it.                                              ######################################################################## If you use this for spamming purposes, you are commiting a violation# of the terms of use of this script. You are also an asshole and    ## should be prohibited from ever owning a pc, or meeting with someone## who has access to one. You are basically beneath pond scum if you  ## are using this script to spam with - speechles                     ####################################################################### # --&gt; Channels# list of channels you want this message displayed in# can be 1,2,3 or 50,000 channels (seperate each by a space)set ad-channels "#somechannel #etc"# --&gt; Minutes# How often do you want the msg to be displayed (in minutes)set ad-minutes 10# --&gt; Messages# Set your msgs here# \002 bold# \003 colour (ex: \0030,12 textcolor=0 white; backgroundcolor=12 blue)# \022 reverse# \037 underline# Write several lines for several msgs# %channel% can be used to represent channels# the script will convert it to represent each channel correctly.set ad-msgs { "\002These are the rules for %channel%." "\037No spamming, no shoes, no shirts, no service."}# --&gt; Flood Control# At what point should we decide when to change to# the slower method of puthelp queueing?# The number used is the amount of lines to display# using putserv, after which the rest will be puthelp.# ( if you want things to display faster, raise this.#   if you find the bot getting excess flooded, lower it. )set ad-flood 5# --&gt; Congratulations your config is finished# DO NOT CHANGE BEYOND THIS POINTif {![info exists ad-timer]} { timer $::ad-minutes sendtext set ad-timer 1}   proc sendtext { } { set count -1 foreach channel [split $::ad-channels] {  foreach msg [split $::ad-msgs] {   regsub -nocase -all -- {%channel%} $msg $channel msg   set count [expr $count + 1]   if {$count &lt; $::ad-flood} {     putserv "PRIVMSG $channel :$msg"   } else {     puthelp "PRIVMSG $channel :$msg"   }   } } timer $::ad-minutes sendtext return 1 }putlog "SendMsg 1.1 by WPnL (modded for egghelp) Loaded"</code></pre></div>The script sanely handles flood control. So feel free to put a lot of channels or many lines of messages.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Tue Mar 18, 2008 9:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[kwnds]]></name></author>
		<updated>2008-03-18T20:52:27-04:00</updated>

		<published>2008-03-18T20:52:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81892#p81892</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81892#p81892"/>
		<title type="html"><![CDATA[Simple Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81892#p81892"><![CDATA[
I need a simple script that send me a message with one or more line to some channels.<br>Can someone help me?<br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8799">kwnds</a> — Tue Mar 18, 2008 8:52 pm</p><hr />
]]></content>
	</entry>
	</feed>
