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

	<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-12-11T20:53:23-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-12-11T20:53:23-04:00</updated>

		<published>2005-12-11T20:53:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58193#p58193</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58193#p58193"/>
		<title type="html"><![CDATA[Help Aidle script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58193#p58193"><![CDATA[
<a href="http://forum.egghelp.org/viewtopic.php?t=10215" class="postlink">Help us to help you</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sun Dec 11, 2005 8:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jailmann]]></name></author>
		<updated>2005-12-11T13:40:20-04:00</updated>

		<published>2005-12-11T13:40:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58180#p58180</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58180#p58180"/>
		<title type="html"><![CDATA[Help Aidle script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58180#p58180"><![CDATA[
Hello<br><br>i have found a script but there somting there need to be change to it because i use som other mode on mirc irc so anyone can help me <br><br>i have these ! = owner and * = protect @ and % half op and +v voice<br><br>I need these thing to be add ind the script i have try but couldent find out how to....<br><br>The script is this .....<br><blockquote class="uncited"><div>### Anti-Idle v1.2<br>### by Progeny &lt;<a href="mailto:progeny@azzurra.org">progeny@azzurra.org</a>&gt;<br>### irc.azzurra.org - #EggHelp<br><br># - Using -<br># Type in partyline:<br># .chanset #channel maxidle &lt;time in minutes&gt;<br># If set 0 channel's check will be ignored.<br><br># Punishing method (1 = Kick, 2 = Kick/Ban)<br>set pmethod 2<br># Ban time in minutes.<br>set bantime 5<br># Kick's reason<br>set aidlereason "E` vietato sostare per piu` di %idletime minuti nel canale."<br># Exception's flags<br>set flags f|f<br># Kick op? (0 = Yes, 1 = No)<br>set kickop 1<br># Kick voice? (0 = Yes, 1 = No)<br>set kickvoice 1<br>#Check for idling users every minutes.<br>bind time - * aidle:checkidle<br><br>setudef int maxidle<br><br>proc aidle:checkidle { min hour day month year } {<br>global botnick flags kickop kickvoice<br>foreach chan [channels] {<br>if {![channel get $chan "maxidle"]} {continue}<br>foreach nick [chanlist $chan] {<br>if {$nick == $botnick} {continue}<br>if {([isop $nick $chan]) &amp;&amp; ($kickop)} {continue}<br>if {([isvoice $nick $chan]) &amp;&amp; ($kickvoice)} {continue}<br>if {[matchattr [nick2hand $nick] $flags] == 1} {continue}<br>if {[getchanidle $nick $chan] &gt; [channel get $chan "maxidle"]} {<br>aidle:punish $chan $nick [channel get $chan "maxidle"]<br>}<br>}<br><br>}<br>}<br><br>proc aidle:punish { channel nick idletime } {<br>global pmethod aidlereason bantime<br>regsub -all "%idletime" $aidlereason $idletime aidlereason<br>switch $pmethod {<br>1 { putserv "KICK $channel $nick :$aidlereason" }<br>2 { newchanban $channel "*![getchanhost $nick]" "Anti-Idle" "Too idle" $bantime }<br>}<br>}<br><br>putlog "Anti-Idle v1.2 loaded"</div></blockquote><br>I have try to do thins but it dosent work .... need help <br><blockquote class="uncited"><div>### Anti-Idle v1.2<br>### by Progeny &lt;<a href="mailto:progeny@azzurra.org">progeny@azzurra.org</a>&gt;<br>### irc.azzurra.org - #EggHelp<br><br># - Using -<br># Type in partyline:<br># .chanset #channel maxidle &lt;time in minutes&gt;<br># If set 0 channel's check will be ignored.<br><br># Punishing method (1 = Kick, 2 = Kick/Ban)<br>set pmethod 2<br># Ban time in minutes.<br>set bantime 1<br># Kick's reason<br>set aidlereason "E` vietato sostare per piu` di %idletime minuti nel canale."<br># Exception's flags<br>set flags f|f<br># Kick owner? (0 = Yes, 1 = No)<br>set kickowner 1<br># Kick protect? (0 = Yes, 1 = No)<br>set kickprotect 1<br># Kick op? (0 = Yes, 1 = No)<br>set kickop 1<br># Kick halfop? (0 = Yes, 1 = No)<br>set kickhalfop 1<br># Kick voice? (0 = Yes, 1 = No)<br>set kickvoice 0<br>#Check for idling users every minutes.<br>bind time - * aidle:checkidle<br><br>setudef int maxidle<br><br>proc aidle:checkidle { min hour day month year } {<br>global botnick flags kickowner kickprotect kickop halfop kickvoice<br>foreach chan [channels] {<br>if {![channel get $chan "maxidle"]} {continue}<br>foreach nick [chanlist $chan] {<br>if {$nick == $botnick} {continue}<br>                  if {([isowner $nick $chan]) &amp;&amp; ($kickowner)} {continue}<br>                  if {([isprotect $nick $chan]) &amp;&amp; ($kickprotect)} {continue}<br>if {([isop $nick $chan]) &amp;&amp; ($kickop)} {continue}<br>                  if {([ishalfop $nick $chan]) &amp;&amp; ($kickphalfop)} {continue}<br>if {([isvoice $nick $chan]) &amp;&amp; ($kickvoice)} {continue}<br>if {[matchattr [nick2hand $nick] $flags] == 1} {continue}<br>if {[getchanidle $nick $chan] &gt; [channel get $chan "maxidle"]} {<br>aidle:punish $chan $nick [channel get $chan "maxidle"]<br>}<br>}<br><br>}<br>}<br><br>proc aidle:punish { channel nick idletime } {<br>global pmethod aidlereason bantime<br>regsub -all "%idletime" $aidlereason $idletime aidlereason<br>switch $pmethod {<br>1 { putserv "KICK $channel $nick :$aidlereason" }<br>2 { newchanban $channel "*![getchanhost $nick]" "Anti-Idle" "Too idle" $bantime }<br>}<br>}<br><br>putlog "Anti-Idle v1.2 loaded"</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4801">Jailmann</a> — Sun Dec 11, 2005 1:40 pm</p><hr />
]]></content>
	</entry>
	</feed>
