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

	<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>2002-03-28T20:12:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-28T20:12:00-04:00</updated>

		<published>2002-03-28T20:12:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5762#p5762</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5762#p5762"/>
		<title type="html"><![CDATA[Deop script , easy Q !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5762#p5762"><![CDATA[
dman thats why the **** didnt work<br>i was writing<br><br>putserv "KILL $nick  shut up"<br>instead of <br>putserv "KILL $nick : die die die!" <br><br>i always forget that " : " <br><br>thanks guys <br><br><br><p>Statistics: Posted by Guest — Thu Mar 28, 2002 8:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-28T17:28:00-04:00</updated>

		<published>2002-03-28T17:28:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5759#p5759</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5759#p5759"/>
		<title type="html"><![CDATA[Deop script , easy Q !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5759#p5759"><![CDATA[
kill = kick?<br>putserv "KICK $nick : die die die!"<br><br>oh.. ircop kill<br><br>putserv "KILL $nick : die die die!"<br><br>any of these commands are put stright to the server:<br><br><a href="http://www.flirt.de/chat/faq/commands.html" class="postlink">http://www.flirt.de/chat/faq/commands.html</a><br><br>&lt;font size=-1&gt;[ This Message was edited by: Mordred on 2002-03-28 14:32 ]&lt;/font&gt;<p>Statistics: Posted by Guest — Thu Mar 28, 2002 5:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-28T11:16:00-04:00</updated>

		<published>2002-03-28T11:16:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5748#p5748</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5748#p5748"/>
		<title type="html"><![CDATA[Deop script , easy Q !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5748#p5748"><![CDATA[
erm, that aint working :/<br><br>or did u write it wrong? whats that " Luser" thing?<p>Statistics: Posted by Guest — Thu Mar 28, 2002 11:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Souperman]]></name></author>
		<updated>2002-03-27T16:06:00-04:00</updated>

		<published>2002-03-27T16:06:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5735#p5735</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5735#p5735"/>
		<title type="html"><![CDATA[Deop script , easy Q !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5735#p5735"><![CDATA[
putserv "KILL Luser <img alt=":grin:" class="emoji smilies" draggable="false" src="//cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f601.svg">ie die die!"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=801">Souperman</a> — Wed Mar 27, 2002 4:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-03-27T11:12:00-04:00</updated>

		<published>2002-03-27T11:12:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=5729#p5729</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=5729#p5729"/>
		<title type="html"><![CDATA[Deop script , easy Q !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=5729#p5729"><![CDATA[
i wrote this small tcl that makes the bot rejoin the chan if someone deops it (it will get op from chanserv when rejoining)<br><br>bind mode - *-o* request_op<br>proc request_op { nick host hand chan mode victim } {<br>if {[isbotnick $victim]} {<br>putserv "PART $chan"<br>putserv "JOIN $chan"<br>puthelp "PRIVMSG $chan <img alt=":grin:" class="emoji smilies" draggable="false" src="//cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/1f601.svg">on't deop me again u twat..."<br>}<br>return 0<br>}<br><br><br>--- <br><br>ok my question is what should i change on that in order to make the bot KILL the user who deoped it after rejoining? <br><br>thanks a lot <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile"> <p>Statistics: Posted by Guest — Wed Mar 27, 2002 11:12 am</p><hr />
]]></content>
	</entry>
	</feed>
