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

	<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>2007-05-22T20:58:27-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Ace-T]]></name></author>
		<updated>2007-05-22T20:58:27-04:00</updated>

		<published>2007-05-22T20:58:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72923#p72923</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72923#p72923"/>
		<title type="html"><![CDATA[Relay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72923#p72923"><![CDATA[
thx for help guys <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>all sorted<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8148">Ace-T</a> — Tue May 22, 2007 8:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[w00f]]></name></author>
		<updated>2007-05-22T20:44:46-04:00</updated>

		<published>2007-05-22T20:44:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72921#p72921</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72921#p72921"/>
		<title type="html"><![CDATA[Relay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72921#p72921"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc trans_bot { usercmd chan text } {   global eggdrops chans botnick   set me [lsearch $eggdrops $botnick]   set transmsg [concat $usercmd $text]    if {$chan == [lindex $chans $me]} {      putallbots $transmsg   } else {      return 0   }}# proc transmission of pub (trans_pubm = y)proc trans_pub {nick uhost hand chan text} {   trans_bot "&gt;pub" $chan $text } </code></pre></div>You might want to change "&gt;pub" to "whatever you want" and bind that in the bot that will receive the msg(you can change "putallbots" to "putbot botnick" if you want just to send to a specific bot instead of all bots in your botnet)<div class="codebox"><p>Code: </p><pre><code>bind bot - "whatever you want" receive_botnetproc receive_botnet { arg } {blablabla}</code></pre></div>w00f<br><br><br>edit: lol take too long to reply ahah <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_mad.gif" width="15" height="15" alt=":x" title="Mad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8264">w00f</a> — Tue May 22, 2007 8:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ace-T]]></name></author>
		<updated>2007-05-22T20:43:26-04:00</updated>

		<published>2007-05-22T20:43:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72920#p72920</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72920#p72920"/>
		<title type="html"><![CDATA[Relay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72920#p72920"><![CDATA[
thats half <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>i also wanted to remove the net name to, so baiscally is just looks like the bots saying it as a normal convo,<br><br>atm its like this<br><br>nick2 (from EFNet)&gt; hello<br><br>and i am wanting it like this<br><br>hello<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8148">Ace-T</a> — Tue May 22, 2007 8:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[YooHoo]]></name></author>
		<updated>2007-05-22T20:36:15-04:00</updated>

		<published>2007-05-22T20:36:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72919#p72919</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72919#p72919"/>
		<title type="html"><![CDATA[Relay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72919#p72919"><![CDATA[
if i understand you correctly, you are trying to remove the speakers nick from public messages.  You didn't post all the code, so there's no telling if this is the only proc that needs to be altered.  With that being said, just remove the nick from the proc<div class="codebox"><p>Code: </p><pre><code># proc transmission of pub (trans_pubm = y)proc trans_pub {nick uhost hand chan text} {   trans_bot "&gt;pub" $chan $text} </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2706">YooHoo</a> — Tue May 22, 2007 8:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ace-T]]></name></author>
		<updated>2007-05-22T20:03:08-04:00</updated>

		<published>2007-05-22T20:03:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72915#p72915</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72915#p72915"/>
		<title type="html"><![CDATA[Relay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72915#p72915"><![CDATA[
hey, im wanting to relay text from one net to another, i have found a script but need it modifing and not sure how,<br><br>i want to remove the nick (from net)  from it, so it will only show the text written,<br><br>here is part of the code<br><div class="codebox"><p>Code: </p><pre><code># proc used by all others for transmissionproc trans_bot { usercmd chan usernick text } {global eggdrops chans botnickset transmsg [concat $usercmd $usernick $text]set me [lsearch $eggdrops $botnick]if {$chan == [lindex $chans $me]} {putallbots $transmsg} else {return 0}}# proc transmission of pub (trans_pubm = y)proc trans_pub {nick uhost hand chan text} {trans_bot "&gt;pub" $chan $nick $text}</code></pre></div>sems to be trans_bot  doing this but if i remove nothing happens, thx<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8148">Ace-T</a> — Tue May 22, 2007 8:03 pm</p><hr />
]]></content>
	</entry>
	</feed>
