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

	<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>2013-02-05T07:34:22-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-02-05T07:34:22-04:00</updated>

		<published>2013-02-05T07:34:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100908#p100908</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100908#p100908"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100908#p100908"><![CDATA[
You could try look at a&amp;a script. It has alot of commands<br><br>wget wget.ascript.name<br><br>Configure bot1.conf/settings.conf/eggdrop.conf<br><br>And run the eggdrop<br><br>If you have problems let me know<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Tue Feb 05, 2013 7:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MasterScript]]></name></author>
		<updated>2013-02-05T05:59:54-04:00</updated>

		<published>2013-02-05T05:59:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100907#p100907</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100907#p100907"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100907#p100907"><![CDATA[
Thank you very much.<br><br>Do you have any simple same like my tcl?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6140">MasterScript</a> — Tue Feb 05, 2013 5:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-02-04T15:56:06-04:00</updated>

		<published>2013-02-04T15:56:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100901#p100901</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100901#p100901"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100901#p100901"><![CDATA[
I tested the botnet link for addchan/remchan (and worked) i didnt tested adduser/deluser (but it should work) and i didnt had time to make the access command (when i will find time i will make that to)<br><div class="codebox"><p>Code: </p><pre><code>bind MSG n addchan addchan:msgbind MSG n remchan remchan:msgbind MSG n adduser adduser:msgbind MSG n deluser deluser:msgbind BOT - botnet botnet:botproc addchan:msg {nick uhost hand arg} {set bot [lindex [split $arg] 0]set chan [lindex [split $arg] 1]if {[llength $bot] &amp;&amp; [llength $chan]} {if {[matchattr $bot b]} {putbot $bot "BOTNET addchan $chan $nick"}}}proc remchan:msg {nick uhost hand arg} {set bot [lindex [split $arg] 0]set chan [lindex [split $arg] 1]if {[llength $bot] &amp;&amp; [llength $chan]} {if {[matchattr $bot b]} {putbot $bot "BOTNET remchan $chan $nick"}}}proc adduser:msg {nick uhost hand arg} {set who [lindex [split $arg] 0]set flag [lindex [split $arg] 1]if {[validuser [nick2hand $who]]} {chattr [nick2hand $who] +$flagputserv "PRIVMSG $nick :Succesfully added $who with +$flag"} else {foreach a [channels] {foreach b [chanlist $a] {if {$b == $who} {adduser $who "*!*@[lindex [split [getchanhost $who $a] @] 1]"chattr $who +$flagputserv "PRIVMSG $nick :Succesfully added $who with +$flag"}}}}}proc deluser:msg {nick uhost hand arg} {set who [lindex [split $arg] 0]if {[validuser [nick2hand $who]]} {deluser [nick2hand $who]putserv "PRIVMSG $nick :Succesfully deleted $who (hand: [nick2hand $who])"} else {putserv "PRIVMSG $nick :User $who doesnt exists"}}proc botnet:bot {from key arg} {set chan [lindex [split $arg] 1]set nick [lindex [split $arg] 2]switch -exact -- [lindex [split $arg] 0] {addchan {if {![validchan $chan]} {channel add $chanputbot $from "BOTNET say $chan $nick"} else {putbot $from "BOTNET validchan $chan $nick"}}remchan {if {![validchan $chan]} {putbot $from "BOTNET invalid $chan $nick"} else {channel remove $chan}}validchan {putserv "PRIVMSG $nick :$chan is a validchan"}invalid {putserv "PRIVMSG $nick :$chan is not valid"}say {putserv "PRIVMSG $nick :I joined $chan.."}}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Mon Feb 04, 2013 3:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MasterScript]]></name></author>
		<updated>2013-02-03T22:46:12-04:00</updated>

		<published>2013-02-03T22:46:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100898#p100898</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100898#p100898"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100898#p100898"><![CDATA[
Yeap,<br><br>Yes, bothub have been connected to botleaf.<br><br>BotHub<br> - Bots1<br> - Bots2<br> - Bots3<br> - Bots4<br><br>Command:<br>addchan - to add bots to channel : /msg BotHub addchan Bots1 #Channel<br>remchan - to remove bots from channel : /msg BotHub remchan Bots1 #channel<br><br>adduser - to add user/staff to BotHub : /msg BotHub adduser usernick flag<br>deluser - to remove user/staff from BotHub : /msg BotHub deluser usernick<br>access - to check user/staff access :/msg BotHub access usernick<br><br>User Flag:<br>n- Root Admin (Root)<br>m - Co Admin (cadmin)<br>o - Bots Operator (bop)<br>hp - General Operator(gop)<br><br>To add user as Rood Admin:<br>/msg BotsHub adduser MasterScript root <br><br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6140">MasterScript</a> — Sun Feb 03, 2013 10:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2013-01-31T10:11:31-04:00</updated>

		<published>2013-01-31T10:11:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100865#p100865</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100865#p100865"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100865#p100865"><![CDATA[
thanks for? answer my question regarding the connection.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Jan 31, 2013 10:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MasterScript]]></name></author>
		<updated>2013-01-31T08:23:34-04:00</updated>

		<published>2013-01-31T08:23:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100863#p100863</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100863#p100863"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100863#p100863"><![CDATA[
Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6140">MasterScript</a> — Thu Jan 31, 2013 8:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2013-01-31T08:10:15-04:00</updated>

		<published>2013-01-31T08:10:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100862#p100862</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100862#p100862"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100862#p100862"><![CDATA[
Hi,<br><br>I've split your post from the <a href="http://forum.egghelp.org/viewtopic.php?t=17899" class="postlink">original</a> topic as it's quite old and there's no need to revive a dead one if you can make a new one, not to mention that what you wanted is a bit different from what was there. Nevertheless, is the <em class="text-italics">bothub</em> connected to <em class="text-italics">botleaf</em>, are on the same channel or how should the command be transmitted?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Jan 31, 2013 8:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MasterScript]]></name></author>
		<updated>2013-01-31T08:01:36-04:00</updated>

		<published>2013-01-31T08:01:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100861#p100861</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100861#p100861"/>
		<title type="html"><![CDATA[add channel from bothub]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100861#p100861"><![CDATA[
I like That.<br><br>How to make like that?<br><br>/msg bothub addchan botleaf #chan<br><br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6140">MasterScript</a> — Thu Jan 31, 2013 8:01 am</p><hr />
]]></content>
	</entry>
	</feed>
