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

	<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>2021-01-05T20:59:47-04:00</updated>

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

		<entry>
		<author><name><![CDATA[ComputerTech]]></name></author>
		<updated>2021-01-05T20:59:47-04:00</updated>

		<published>2021-01-05T20:59:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109313#p109313</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109313#p109313"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109313#p109313"><![CDATA[
Correct CrazyCat, but it does control any bots on that Botnet, so better using partyline commands than not  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> but as i said, it's not as good as slennox's script, but it is much easier to add any command you wish to it  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12849">ComputerTech</a> — Tue Jan 05, 2021 8:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-01-04T18:48:05-04:00</updated>

		<published>2021-01-04T18:48:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109309#p109309</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109309#p109309"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109309#p109309"><![CDATA[
This is not a botnet script but a way to use party-line commands in public channel.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Jan 04, 2021 6:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ComputerTech]]></name></author>
		<updated>2021-01-04T13:52:59-04:00</updated>

		<published>2021-01-04T13:52:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109308#p109308</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109308#p109308"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109308#p109308"><![CDATA[
Sorry for the late response (been busy with new years) here is the code.<br><div class="codebox"><p>Code: </p><pre><code>#Creator Spyda, #made for ComputerTech bind PUB B .join bn:pub:join proc bn:pub:join {nick uhost hand chan args} {  global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }  if {$c} {   putquick "PRIVMSG $chan :\[ok, channel add $botnick joining [lindex [join $args] 1]\]"   channel add [lindex [join $args] 1]   } } bind PUB B .part bn:pub:part proc bn:pub:part {nick uhost hand chan args} {  global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }  if {$c} {   putquick "PRIVMSG $chan :\[ok, channel removed $botnick parting [lindex [join $args] 1]\]"   channel remove [lindex [join $args] 1]   } } bind PUB B .jump bn:pub:jump proc bn:pub:jump {nick uhost hand chan args} {  global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }  if {$c} {   putquick "PRIVMSG $chan :\[ok, jumping $botnick to [lindex [join $args] 1]:[lindex [join $args] 2]\]"   jump [lindex [join $args] 1] [lindex [join $args] 2]  } else {   putquick "PRIVMSG $chan :\[ok, jumping $botnick to default\]"   jump   } }bind pub B .restart do:restartproc do:restart {nick uhost hand chan args} {  global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }    putquick "PRIVMSG $chan :Restart Requested By $nick Restarting...)"  restart}bind pub B .rehash do:rehashproc do:rehash {nick uhost hand chan args} {   global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }  putquick "PRIVMSG $chan :Rehash Requested By $nick Rehashing...)"  rehash}bind pub B .die do:dieproc do:die {nick uhost hand chan args} {   global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }  putquick "PRIVMSG $chan :Shutdown Requested By $nick Shutting Down...)"  die}bind pub B .say do:sayproc do:say {nick uhost hand chan args} {  global botnick  set c 0  if {[llength [join $args]] &gt; 0} {   if {![string match -nocase [lindex [join $args] 0] $botnick]} {    return   }   if {[llength [join $args]] &gt; 1} {    incr c    }  }set msg [lrange [lindex $text 0] 1 end]putserv "privmsg $chan :$msg"}</code></pre></div>as you can see how it is made  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12849">ComputerTech</a> — Mon Jan 04, 2021 1:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[geek]]></name></author>
		<updated>2020-12-30T09:33:35-04:00</updated>

		<published>2020-12-30T09:33:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109298#p109298</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109298#p109298"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109298#p109298"><![CDATA[
ok, very thanks  <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=10286">geek</a> — Wed Dec 30, 2020 9:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ComputerTech]]></name></author>
		<updated>2020-12-29T02:21:53-04:00</updated>

		<published>2020-12-29T02:21:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109290#p109290</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109290#p109290"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109290#p109290"><![CDATA[
A friend of mine created a Botnet script, and best part is that its VERY easy to add more commands, i'll find it in my Database tomorrow, if you want to give it a go  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><br><br>Probably not as good as slennox's script, But it's a good way to learn/pratice Tcl <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=12849">ComputerTech</a> — Tue Dec 29, 2020 2:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2020-12-28T19:56:47-04:00</updated>

		<published>2020-12-28T19:56:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109288#p109288</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109288#p109288"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109288#p109288"><![CDATA[
netbots use... botnet, so it doesn't care about ipv4 or ipv6, it only cares about your botnet <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>I'll have a check on this plugin but I don't think you'll have any trouble with it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Dec 28, 2020 7:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[geek]]></name></author>
		<updated>2020-12-28T13:10:52-04:00</updated>

		<published>2020-12-28T13:10:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109287#p109287</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109287#p109287"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109287#p109287"><![CDATA[
thanks CrazyCat<br><br>complete netbots.tcl v4.10 of 8/8/2005 from slennox<br><br>but yes, I try it in my bots and they seem to work still good<br><br>my only doubt is about ipv6...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10286">geek</a> — Mon Dec 28, 2020 1:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2020-12-28T11:39:52-04:00</updated>

		<published>2020-12-28T11:39:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109285#p109285</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109285#p109285"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109285#p109285"><![CDATA[
If you're speaking about netbots1.16 from slennox, it's normally still working with eggdrop1.8, and I don't remember any security issue about it.<br><br>I use bnusers from cmouse, but it doesn't do exactly the same things<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Dec 28, 2020 11:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[geek]]></name></author>
		<updated>2020-12-28T06:40:41-04:00</updated>

		<published>2020-12-28T06:40:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=109284#p109284</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=109284#p109284"/>
		<title type="html"><![CDATA[netbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=109284#p109284"><![CDATA[
I find that netbots are still the best well written tcl.. but last release was for egg1.6<br><br>are netbots still working in new eggdrops 1.8.4?<br><br>or are there some compatibility errors and security issue?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10286">geek</a> — Mon Dec 28, 2020 6:40 am</p><hr />
]]></content>
	</entry>
	</feed>
