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

	<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-09-25T07:18:06-04:00</updated>

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

		<entry>
		<author><name><![CDATA[mia_richard]]></name></author>
		<updated>2003-09-25T07:18:06-04:00</updated>

		<published>2003-09-25T07:18:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27553#p27553</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27553#p27553"/>
		<title type="html"><![CDATA[Searching for a coder / or script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27553#p27553"><![CDATA[
i dont need the deop things<br>i only need this<br><br>a. &gt; ban kick the<br>PRIVMSG L #chan recoverchan<br>/j chan (join)<br>ban &gt; user who has banned me..<br><br>so this 2 lines<br>putquick "PRIVMSG L :deop $chan $nick" -next <br>putquick "PRIVMSG L :RECOVER $chan" <br>are correct with<br>putquick "PRIVMSG L $chan RECOVERCHAN" -next (recover chan is a L command)<br>with the code down im far away?<br><div class="codebox"><p>Code: </p><pre><code>bind kick - * channel:kick   proc channel:kick {nick uhost hand chan targ rsn} {   if {![string match -nocase "$targ" $::botnick]} { return }   global revengebans   set chan [string tolower $chan]   putquick "PRIVMSG L $chan RECOVERCHAN" -next    if {![info exists revengebans($chan)]} { set revengebans($chan) {} }   lappend revengebans($chan) [list $nick *!*@[lindex [split $uhost @] 1]] }  bind mode - "* +o" lamer:remove proc lamer:remove {nick uhost hand chan mc vict} {   global revengebans   if {[string tolower $vict] != [string tolower $::botnick]} { return }   set chan [string tolower $chan]   if {![info exists revengebans($chan)]} { return }   foreach element $revengebans($chan) {     set revenge_nick [lindex $element 0]     set revenge_banmask [lindex $element 1]     if {[onchan $revenge_nick $chan]} {       putserv "mode $chan +b $revenge_banmask"        putkick $chan $revenge_nick "Lamer Removed."     }   }   unset revengebans($chan) </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3760">mia_richard</a> — Thu Sep 25, 2003 7:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-09-24T17:06:03-04:00</updated>

		<published>2003-09-24T17:06:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27538#p27538</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27538#p27538"/>
		<title type="html"><![CDATA[Searching for a coder / or script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27538#p27538"><![CDATA[
use the code:<div class="codebox"><p>Code: </p><pre><code>bind kick - * channel:kick   proc channel:kick {nick uhost hand chan targ rsn} {   if {![string match -nocase "$targ" $::botnick]} { return }   global revengebans   set chan [string tolower $chan]   putquick "PRIVMSG L :deop $chan $nick" -next   putquick "PRIVMSG L :RECOVER $chan"   if {![info exists revengebans($chan)]} { set revengebans($chan) {} }   lappend revengebans($chan) [list $nick *!*@[lindex [split $uhost @] 1]] }  bind mode - "* +o" lamer:remove proc lamer:remove {nick uhost hand chan mc vict} {   global revengebans   if {[string tolower $vict] != [string tolower $::botnick]} { return }   set chan [string tolower $chan]   if {![info exists revengebans($chan)]} { return }   foreach element $revengebans($chan) {     set revenge_nick [lindex $element 0]     set revenge_banmask [lindex $element 1]     if {[onchan $revenge_nick $chan]} {       putserv "mode $chan +b $revenge_banmask"        putkick $chan $revenge_nick "Lamer Removed."     }   }   unset revengebans($chan)  }</code></pre></div>fix the "L" things as they should be, and make sure you dont remove the ":" .<br>also you can edit the bots needs.<br>for example to let the bot unban himself when banned do a:<br><strong class="text-strong">.chanset #channel need-unban putquick "PRIVMSG L :verify #channel"</strong><br>in the partyline. you can also edit need-op, need-limit, need-key and need-invite.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Sep 24, 2003 5:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mia_richard]]></name></author>
		<updated>2003-09-24T16:13:16-04:00</updated>

		<published>2003-09-24T16:13:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27537#p27537</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27537#p27537"/>
		<title type="html"><![CDATA[Searching for a coder / or script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27537#p27537"><![CDATA[
did you mean this script?!?<br><a href="http://forum.egghelp.org/viewtopic.php?t=5283&amp;highlight=kick+ban" class="postlink">http://forum.egghelp.org/viewtopic.php? ... t=kick+ban</a><br>--------<br>hmm<br><br>bind kick - * channel:kick <br><br>proc channel:kick {nick uhost hand chan targ rsn} { <br>  if {[string match -nocase "$targ" $::botnick]} { <br>  putquick "PRIVMSG L RECOVER $chan" -next <br> } <br>} <br><br><br>can this be correct so? or not<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3760">mia_richard</a> — Wed Sep 24, 2003 4:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mia_richard]]></name></author>
		<updated>2003-09-24T16:05:42-04:00</updated>

		<published>2003-09-24T16:05:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27536#p27536</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27536#p27536"/>
		<title type="html"><![CDATA[Searching for a coder / or script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27536#p27536"><![CDATA[
thank you i will try it<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3760">mia_richard</a> — Wed Sep 24, 2003 4:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-09-24T15:43:38-04:00</updated>

		<published>2003-09-24T15:43:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27533#p27533</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27533#p27533"/>
		<title type="html"><![CDATA[Searching for a coder / or script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27533#p27533"><![CDATA[
now, look at you. You are willing to spend some money for something that has already been given on <span style="text-decoration:underline">this</span> forum, which can be found if you are not lazy to click the search bottom.<br><br>You'll find a script in a thread started by me, just change the DALnet services nick and commands to suite quakenet. and about the host, then set the host to *!$uhost and it should store. *!ident@host.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Sep 24, 2003 3:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mia_richard]]></name></author>
		<updated>2003-09-24T14:34:36-04:00</updated>

		<published>2003-09-24T14:34:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27526#p27526</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27526#p27526"/>
		<title type="html"><![CDATA[Searching for a coder / or script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27526#p27526"><![CDATA[
hello<br><br>searching for script and i pay over paypal (or other variants) for it<br><br>wishes (pls only guys who be able to code this) should msg me<br><br>For quakenet <br>if someone bans and kickes the bot <br>a.) rejoin, if not able (cause of ban) then <br>Re auth (now im using a qnet auth script) and the bot has +m priv. on quakenet L<br>a1.) then he must to a /msg L CHANLEV recover (so that he unbans himself)<br>rejoin, and revenge the guy who has make a kick ban on him<br>(now he has it too but if you make it fast you can ban and kick him)<br><br>b.) re script the guard102.tcl script hostmask not like yet *!*@ he should make identd@ .. ( i know ..unsecure) but better ..for ignores cause of flood<br>pls mail or priv msg me fore payment infos.<br>cya<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3760">mia_richard</a> — Wed Sep 24, 2003 2:34 pm</p><hr />
]]></content>
	</entry>
	</feed>
