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

	<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>2008-03-17T01:14:17-04:00</updated>

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

		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2008-03-17T01:14:17-04:00</updated>

		<published>2008-03-17T01:14:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81841#p81841</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81841#p81841"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81841#p81841"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># -&gt; triggerset waffles(cmd) "!admin"# -&gt; Admins list # can be 1, 2, 3 or 50,000 nicks, there is no limit but your own imagination# if more than one, seperate each by a single space.set waffles(list) "admin1 admin2 etc etc"# -&gt; Message type# 0 for private message, or 1 for noticeset waffles(type) 1### end config, changes beyond not advisedbind pub - $waffles(cmd) pub:needadmin proc pub:needadmin { nick host hand chan arg } {    global waffles    if {$waffles(type) == 0} {        set adtype "PRIVMSG"    } else {        set adtype "NOTICE"    }    if {$arg != ""} {        set adreason " Reason: [join [lrange [split $arg] 0 end]]"    } else {        set adreason ""    }    foreach ad [split $waffles(list)] {        if {[onchan $ad]} {             set flagtrap 1             # puthelp is used here because (potentially) we jested above             # about putting 50,000 nicks, some people may take that             # seriously. puthelp queue can handle it without flooding bot.             # changing this to putquick or putserv is ill advised.             puthelp "$adtype $ad :\002$nick\002 requires assistance from an admin on $chan.$adreason"        }    }    if {[info exists flagtrap]} {        putserv "$adtype $nick :$nick, your request has been sent to the admins, please wait for assistance."    } else {        putserv "$adtype $nick :Sorry $nick, the admins are unavailable at this time. Try again later."    }}</code></pre></div>In English. I've also added an option for privmsg or notice. As well as the ability for users to give a help reason.<br><br>With message type 1, notice, it would work like this...<br>someone types: &lt;nick&gt; !admin<br>you would see: -bot- <strong class="text-strong">nick</strong> requires assistance from an admin on #channel. <br>someone types: &lt;nick&gt; !admin i need help with my friend getting unbanned please<br>you would see: -bot- <strong class="text-strong">nick</strong> requires assistance from admin on #channel. Reason:  need help with my friend getting unbanned please<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Mon Mar 17, 2008 1:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-03-16T09:52:05-04:00</updated>

		<published>2008-03-16T09:52:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81814#p81814</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81814#p81814"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81814#p81814"><![CDATA[
use a translate spanish to english: <a href="http://www.world.altavista.com" class="postlink">www.world.altavista.com</a><br><br>trouble solved.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Sun Mar 16, 2008 9:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mikkeldk]]></name></author>
		<updated>2008-03-16T08:54:23-04:00</updated>

		<published>2008-03-16T08:54:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81812#p81812</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81812#p81812"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81812#p81812"><![CDATA[
<blockquote class="uncited"><div>try<br><div class="codebox"><p>Code: </p><pre><code>#### triggerset waffles(cmd) "!admin"# Admins listset waffles(list) "admin1 admin2"###bind pub - $waffles(cmd) pub:needadminproc pub:needadmin { nick host hand chan arg } {  global waffles  set counter 0  foreach ad [split $waffles(list)] {     if {[onchan $ad $chan]} {         putquick "PRIVMSG $ad :\037$nick\017 Necesita la Ayuda de Un Admin."         incr counter     }  }  if {$counter == 0} {     putquick "PRIVMSG $chan :Lo Siento $nick, No hay ningun Admin Online."  } else {     putquick "PRIVMSG $chan :$nick, tu petición ha sido enviada a la administración. Por Favor espera."  }}</code></pre></div>this code work on my channel.<br><br>good luck.</div></blockquote>Can u not set it to english? I hater Spain <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=9785">mikkeldk</a> — Sun Mar 16, 2008 8:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-03-16T08:03:00-04:00</updated>

		<published>2008-03-16T08:03:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81811#p81811</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81811#p81811"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81811#p81811"><![CDATA[
try<br><div class="codebox"><p>Code: </p><pre><code>#### triggerset waffles(cmd) "!admin"# Admins listset waffles(list) "admin1 admin2"###bind pub - $waffles(cmd) pub:needadminproc pub:needadmin { nick host hand chan arg } {  global waffles  set counter 0  foreach ad [split $waffles(list)] {     if {[onchan $ad $chan]} {         putquick "PRIVMSG $ad :\037$nick\017 Necesita la Ayuda de Un Admin."         incr counter     }  }  if {$counter == 0} {     putquick "PRIVMSG $chan :Lo Siento $nick, No hay ningun Admin Online."  } else {     putquick "PRIVMSG $chan :$nick, tu petición ha sido enviada a la administración. Por Favor espera."  }}</code></pre></div>this code work on my channel.<br><br>good luck.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Sun Mar 16, 2008 8:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mikkeldk]]></name></author>
		<updated>2008-03-16T07:12:04-04:00</updated>

		<published>2008-03-16T07:12:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81809#p81809</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81809#p81809"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81809#p81809"><![CDATA[
<blockquote class="uncited"><div>take look this.<br><br><a href="http://forum.egghelp.org/viewtopic.php?t=15304&amp;highlight=waffles" class="postlink">http://forum.egghelp.org/viewtopic.php? ... ht=waffles</a></div></blockquote>&lt;- Its Dont working!!!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9785">mikkeldk</a> — Sun Mar 16, 2008 7:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nor7on]]></name></author>
		<updated>2008-03-16T06:56:52-04:00</updated>

		<published>2008-03-16T06:56:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81807#p81807</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81807#p81807"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81807#p81807"><![CDATA[
take look this.<br><br><a href="http://forum.egghelp.org/viewtopic.php?t=15304&amp;highlight=waffles" class="postlink">http://forum.egghelp.org/viewtopic.php? ... ht=waffles</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8762">Nor7on</a> — Sun Mar 16, 2008 6:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mikkeldk]]></name></author>
		<updated>2008-03-16T06:46:54-04:00</updated>

		<published>2008-03-16T06:46:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=81805#p81805</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=81805#p81805"/>
		<title type="html"><![CDATA[Helpdesk?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=81805#p81805"><![CDATA[
Hello all again <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>I will ask .. For Where can i find Helpdesk to Script?<br>Only to ex: #Mychan.help<br>And i use: !online<br>And This Admin are Online and this bot will voice one to helping<br>and i maybe say: Whats problem??<br>where can i find or make?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9785">mikkeldk</a> — Sun Mar 16, 2008 6:46 am</p><hr />
]]></content>
	</entry>
	</feed>
