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

	<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-04-11T11:53:24-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Satras]]></name></author>
		<updated>2005-04-11T11:53:24-04:00</updated>

		<published>2005-04-11T11:53:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48011#p48011</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48011#p48011"/>
		<title type="html"><![CDATA[Lastspoke]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48011#p48011"><![CDATA[
yeah <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>thanx for the link so far.. thats exactly the script i got the idea from <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br>But since i switched over to mysqlseen this feature is missing <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br><br>I like to get the "true" idel time from an SQL database as well.<br>Cause if someone part and join again his idel time is set to 0,<br>even if he never said a word :S<br><br>But im more interested in a !lastspoke (maybe addon) for my seen script <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=5586">Satras</a> — Mon Apr 11, 2005 11:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-04-11T07:48:13-04:00</updated>

		<published>2005-04-11T07:48:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48000#p48000</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48000#p48000"/>
		<title type="html"><![CDATA[Lastspoke]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48000#p48000"><![CDATA[
Bass's last seen tcl script does have a trigger for !lastspoke I beleive. It records each individual records, what that person was last seen doing along with the last time they were found doing that and also the last time they were found saying something, "!lastspoke". <br><br>I don't beleive it records, what was said on !lastspoke but only when was it said.<br><br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=37" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... load&amp;id=37</a><br><br>You can also maybe find !lastspoke in other seen scripts or modules for eggdrops. Not sure about SQL, since bass's script was written 4 years ago, and still alot of people use it. As far as I saw the database logs, they were in plain text I guess, so they really don't need to be in SQL even if they work. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>As for banning people if they haven't spoken for a specified amount of time, something like this can come in handy:<br><div class="codebox"><p>Code: </p><pre><code>#Set specified idled time in minutesset idletime "30"if {[botisop $chan]} {return 0}foreach user [chanlist $chan] { if {![isbotnick $nick] &amp;&amp; ![isop $user $chan] &amp;&amp; ([getchanidle $user $chan] &gt;= $idletime)} {  putserv "MODE $chan +b *!*@[lindex [split $uhost @] 1]"  putserv "KICK $chan $nick :You have been idle alot, out with you now!"  }}</code></pre></div>You can make this loop run at regular intervals with a continued timer and would have to integrate this within the seen script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Apr 11, 2005 7:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Satras]]></name></author>
		<updated>2005-04-11T05:06:06-04:00</updated>

		<published>2005-04-11T05:06:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47990#p47990</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47990#p47990"/>
		<title type="html"><![CDATA[Lastspoke]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47990#p47990"><![CDATA[
Well, it looks like the post is lost somwhere, os i repost it again <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>I'm looking for a script that does the following:<ul><li>Use SQL Database for !lastspoke trigger *must*</li><li>People must have spoken something (ignore away msg and so on)</li><li>Option to ban people wich havent spoke for an specified time</li></ul><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5586">Satras</a> — Mon Apr 11, 2005 5:06 am</p><hr />
]]></content>
	</entry>
	</feed>
