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

	<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>2005-06-08T18:20:40-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-06-08T18:20:40-04:00</updated>

		<published>2005-06-08T18:20:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50432#p50432</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50432#p50432"/>
		<title type="html"><![CDATA[Userlist error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50432#p50432"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub o|f !userlist user:list  proc user:list {nick host hand chan args} {  if {[userlist] == ""} {   puthelp "NOTICE $nick :There are no users in my userlist for $chan "   return 0  }  puthelp "NOTICE $nick :Users For $chan:" foreach user [userlist] {   puthelp "NOTICE $nick :$user [chattr $user $chan]"  } }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Jun 08, 2005 6:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-06-08T13:32:54-04:00</updated>

		<published>2005-06-08T13:32:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50421#p50421</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50421#p50421"/>
		<title type="html"><![CDATA[Userlist error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50421#p50421"><![CDATA[
thanks dude. But i want to chan the output from:<br><br>-[-Guard-]- Users: ShoVe (ajmnoptx|-) - Tosser^^ (hjmnoptx|-) - L (ahjmoptx|-) - Q<br>-[-Guard-]- Users: (ahjmoptx|amnov) - CC|alfn (hp|amov) - CC|alfn`` (hp|-) - CC|FF^BnC<br>-[-Guard-]- Users: (hp|amno) - CC|h0h0 (hp|amov) - fishbot (hp|-) - Garfield (hp|-) -<br>-[-Guard-]- Users: Sanchezz (hp|ao) - Sarge] (hp|av)<br><br>to this output:<br>Userlist For $chan:<br>Handle/Nick    Flags<br>User               Flags<br>User2             Flags<br>User3             Flags<br><br>etc and make it in order, so owners at the top of the userlist, and F friends at the bottom. Please help, Thanks!!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Wed Jun 08, 2005 1:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-06-08T13:01:56-04:00</updated>

		<published>2005-06-08T13:01:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50419#p50419</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50419#p50419"/>
		<title type="html"><![CDATA[Userlist error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50419#p50419"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub o|f !userlist user:list  proc user:list {nick host hand chan args} {  if {[userlist] == ""} {   puthelp "NOTICE $nick :There are no users in my userlist for $chan "   return 0  }  foreach user [join [lrange [userlist] 0 end]] {   lappend users "$user ([chattr $user $chan])"  }  foreach userwrap [wordwrap [join $users { - }]] {   puthelp "NOTICE $nick :Users: $userwrap"  } } putlog "Userlist Script Loaded"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Jun 08, 2005 1:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-06-08T12:51:35-04:00</updated>

		<published>2005-06-08T12:51:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50418#p50418</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50418#p50418"/>
		<title type="html"><![CDATA[Userlist error]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50418#p50418"><![CDATA[
The script:<br><div class="codebox"><p>Code: </p><pre><code>bind pub o|f !userlist user:list  proc user:list {nick host hand chan args} {   puthelp "NOTICE $nick :SYNTAX: !userlist"    return 0   }   if {[userlist] == ""} {     puthelp "NOTICE $nick :There are no users in my userlist for $chan "     return 0    }    foreach user [join [lrange [userlist] 0 end]] {     lappend users "$user ([chattr $user $chan])"    }    foreach userwrap [wordwrap [join $users { - }]] {     puthelp "NOTICE $nick :Users: $userwrap"    }   } else {    puthelp "NOTICE $nick :SYNTAX: !userlist"   }   return 0  }putlog "Userlist Script Loaded"</code></pre></div><br>The error:<br><br>&lt;[-Guard-]&gt; [17:48] can't read "chan": no such variable<br>&lt;[-Guard-]&gt;     while executing<br>&lt;[-Guard-]&gt; "puthelp "NOTICE $nick :There are no users in my userlist for $chan ""<br>&lt;[-Guard-]&gt;     invoked from within<br>&lt;[-Guard-]&gt; "if {[userlist] == ""} {<br>&lt;[-Guard-]&gt;      puthelp "NOTICE $nick :There are no users in my userlist for $chan "<br>&lt;[-Guard-]&gt;      return 0<br>&lt;[-Guard-]&gt;     }"<br>&lt;[-Guard-]&gt;     (file "scripts/userlist.tcl" line 7)<br>&lt;[-Guard-]&gt;     invoked from within<br>&lt;[-Guard-]&gt; "source scripts/userlist.tcl"<br>&lt;[-Guard-]&gt;     (file "eggdrop.conf" line 1352)<br>&lt;[-Guard-]&gt; [17:48] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)<br><br>please help!![/i]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Wed Jun 08, 2005 12:51 pm</p><hr />
]]></content>
	</entry>
	</feed>
