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

	<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>2006-08-30T09:28:23-04:00</updated>

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

		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2006-08-30T09:28:23-04:00</updated>

		<published>2006-08-30T09:28:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65987#p65987</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65987#p65987"/>
		<title type="html"><![CDATA[topic save and recall]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65987#p65987"><![CDATA[
it works for the me and channels it runs on if your not happy with it then feel free to bin this thread, i only posted it incase someone else might make us of it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Wed Aug 30, 2006 9:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2006-08-30T06:06:21-04:00</updated>

		<published>2006-08-30T06:06:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65984#p65984</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65984#p65984"/>
		<title type="html"><![CDATA[topic save and recall]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65984#p65984"><![CDATA[
Alchera was giving you a clear hint, format it properly first.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Wed Aug 30, 2006 6:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2006-08-29T23:54:43-04:00</updated>

		<published>2006-08-29T23:54:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65978#p65978</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65978#p65978"/>
		<title type="html"><![CDATA[topic save and recall]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65978#p65978"><![CDATA[
quite possibly <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Tue Aug 29, 2006 11:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2006-08-29T18:54:06-04:00</updated>

		<published>2006-08-29T18:54:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65970#p65970</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65970#p65970"/>
		<title type="html"><![CDATA[topic save and recall]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65970#p65970"><![CDATA[
Would look better if correctly formatted.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Aug 29, 2006 6:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2006-08-29T15:58:55-04:00</updated>

		<published>2006-08-29T15:58:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65959#p65959</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65959#p65959"/>
		<title type="html"><![CDATA[topic save and recall]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65959#p65959"><![CDATA[
wrote this a while ago thought someone may get some use out of it.<br><br>1. it will save every topic the bot is in regardless of it's op status.<br>2. the topic files are stored in the eggdrop folder you may want to change that.<br><br>commands<br><strong class="text-strong">!topic</strong>   will restore the last topic changed, everyone has access to this.<br><strong class="text-strong">!topicsave</strong> and <strong class="text-strong">!topicload</strong> will save or restore a topic ops only, only 1 topic though.<br><div class="codebox"><p>Code: </p><pre><code># save the topicbind topc - * topic:savetopicproc topic:savetopic {nick host hand chan topic} { if {[topic $chan] == "" } { # ignore empty topic } else {set TOTF "./TOTopicfile$chan" set TOfile [open $TOTF "w"] fconfigure $TOfile -encoding binary set topicline [topic $chan] puts $TOfile [topic $chan] close $TOfile}}# allow someone to reset the topicbind pub - !topic topic:resetproc topic:reset {nick host handle chan topic} {if {[botisop $chan]} {set TOTF "./TOTopicfile$chan" set TOfile [open $TOTF "r"] fconfigure $TOfile -encoding binary set oldtopic [read -nonewline $TOfile] putserv "TOPIC $chan :Resyncing topic.." putserv "TOPIC $chan :$oldtopic" close $TOfile   }}# save the topic for later return, op onlybind pub - !topicsave topic:storeoldtopicproc topic:storeoldtopic {nick host hand chan topic} {if {[isop $nick $chan] &amp;&amp; [botisop $chan]} { set TOTF "./TOTopicfilesaved$chan" set TOfile [open $TOTF "w"] fconfigure $TOfile -encoding binary set topicline [topic $chan] puts $TOfile [topic $chan] close $TOfile puthelp "PRIVMSG $chan :topic saved."}}# allow an admin to reset the stored topicbind pub - !topicload topic:recalloldtopicproc topic:recalloldtopic {nick host handle chan topic} {if {[isop $nick $chan] &amp;&amp; [botisop $chan]} {set TOTF "./TOTopicfilesaved$chan" set TOfile [open $TOTF "r"] fconfigure $TOfile -encoding binary set oldtopic [read -nonewline $TOfile] putserv "TOPIC $chan :Recalling Stored Topic.." putserv "TOPIC $chan :$oldtopic" close $TOfile   }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Tue Aug 29, 2006 3:58 pm</p><hr />
]]></content>
	</entry>
	</feed>
