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

	<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-10-10T10:53:31-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-10T10:53:31-04:00</updated>

		<published>2003-10-10T10:53:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28236#p28236</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28236#p28236"/>
		<title type="html"><![CDATA[Released v1.02 by [DrN] problem]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28236#p28236"><![CDATA[
<strong class="text-strong">set t [join [lrange [split $arg] 2 end]]</strong><br><br>would be better<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Fri Oct 10, 2003 10:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2003-10-09T08:56:11-04:00</updated>

		<published>2003-10-09T08:56:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28199#p28199</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28199#p28199"/>
		<title type="html"><![CDATA[re]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28199#p28199"><![CDATA[
Maybe this will help:<br><br>change this:<br>set c [lindex $arg 0] <br>set n [lindex $arg 1] <br>set t [lrange $arg 2 end]<br><br>to:<br>set c [lindex [split $arg] 0] <br>set n [lindex [split $arg] 1]<br>set t [lrange [split $arg] 2 end]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Thu Oct 09, 2003 8:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SmokeyOne]]></name></author>
		<updated>2003-09-05T02:59:06-04:00</updated>

		<published>2003-09-05T02:59:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26526#p26526</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26526#p26526"/>
		<title type="html"><![CDATA[Released v1.02 by [DrN] problem]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26526#p26526"><![CDATA[
i guess no one can help me on this =/<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2530">SmokeyOne</a> — Fri Sep 05, 2003 2:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SmokeyOne]]></name></author>
		<updated>2003-08-31T02:25:10-04:00</updated>

		<published>2003-08-31T02:25:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=25996#p25996</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=25996#p25996"/>
		<title type="html"><![CDATA[Released v1.02 by [DrN] problem]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=25996#p25996"><![CDATA[
okay everything works fine, but when you have 2 bots linked together and you use the command to add a new release it doesn't always work with the other bot, it also seems to cut off half the name when it announces on the leaf bot, has anyone seen this problem before ?<br><br>Here is the 2 lines that is used for the putallbots code<br><br># putallbots "reloadreleased $released(netcode) $network"<br>bind bot - reloadreleased reloadreleased_in<br>proc reloadreleased_in {bot cmd arg} {<br> global released<br> set c [lindex $arg 0]<br> set n [lindex $arg 1]<br> if {$c == $released(netcode)} {<br>                                putlog "RELEASED: Reload Request from $n -$c-"<br>                                load_released<br>                               } else {putlog "RELEASED: Ignored Reload Request from $n -$c-"}<br>}<br><br><br># putallbots "announcereleased $released(netcode) $network prgname"<br>bind bot - announcereleased announcereleased_in<br>proc announcereleased_in {bot cmd arg} {<br> global released<br> if {$released(announce_botnet) != 1} {return 0}<br> set c [lindex $arg 0]<br> set n [lindex $arg 1]<br> set t [lrange $arg 2 end]<br> if {$c == $released(netcode)} {<br>                                putlog "RELEASED: Announce Request from $n -$c- :$t"<br>                                announce_release "$t"<br>                               } else {putlog "RELEASED: Ignored Reload Request from $n -$c-"}<br>}<br><br><br>If more is Needed I'll just post up the whole script. Hope someone can help me with my problem.. thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2530">SmokeyOne</a> — Sun Aug 31, 2003 2:25 am</p><hr />
]]></content>
	</entry>
	</feed>
