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

	<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-10-09T23:06:28-04:00</updated>

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

		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-10-09T23:06:28-04:00</updated>

		<published>2007-10-09T23:06:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76549#p76549</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76549#p76549"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76549#p76549"><![CDATA[
This is exactly what i want.. Thanks for your effort Alchera!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9332">JohnJohnJohn</a> — Tue Oct 09, 2007 11:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-10-08T17:57:50-04:00</updated>

		<published>2007-10-08T17:57:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76491#p76491</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76491#p76491"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76491#p76491"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc notc:why { nick uhost hand text {dest ""}} {   global botnick   set text [stripcodes b $text]   # destination must be the bot   if { $dest != $botnick } { return 0 }   # check nick and uhost is chanserv   if { $nick != "ChanServ" || $uhost != "service@dal.net"} { return 0 }   # a WHY result?   set matchrule {* has * access to *}   if { ![string match $matchrule $text] } { return 0 }   set channel [string trim [lindex [split $text] 5] .]   if {[string match [string tolower [lindex [split $text] 2]] "founder"]} {       set text "All rise now! The Founder has arrived! All hail [lindex [split $text] 0]"   }   if {[string match [string tolower [lindex [split $text] 2]] "sop"]} {       set text "Here it comes the Sop of $channel, Welcome [lindex [split $text] 0]"   }   if {[string match [string tolower [lindex [split $text] 2]] "aop"]} {       set text "[lindex [split $text] 0] is just an AOp in $channel"   }   putserv "privmsg $channel :\00306$text"}</code></pre></div>Those that wish to use this script but want to use the <span style="text-decoration:underline">standard</span> DALnet reply minus the " Channel Frozen: NO" bit:<div class="codebox"><p>Code: </p><pre><code>....   set channel [string trim [lindex [split $text] 5] .]   set text [regsub { Channel Frozen: NO} $text ""]   putserv "NOTICE @$channel :\00306$text"....</code></pre></div>Also, if the following error is encountered:<blockquote class="uncited"><div>Tcl error [notc:why]: extra characters after close-quote</div></blockquote>.. simply change:<div class="codebox"><p>Code: </p><pre><code>proc notc:why { nick uhost hand text {dest ""}}</code></pre></div>.. to:<div class="codebox"><p>Code: </p><pre><code>proc notc:why { nick uhost hand text dest}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Oct 08, 2007 5:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-10-07T02:02:33-04:00</updated>

		<published>2007-10-07T02:02:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76442#p76442</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76442#p76442"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76442#p76442"><![CDATA[
There it goes Alchera that hits the spot.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> it suits what am lookin for.. thanks for the effort <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> but anyway i would like to add some fancy stuff on it, is there any way that i can customize the $text result? For instance if an Aop joined the channel the bot will message different message and as well as Sop and Founder..<br><br>example:<br><br>(Aop joins the chan)<br>* ChanServ sets mode: +o JohnJohnJohn<br>&lt;botnick&gt; JohnJohnJohn is just an Aop in this &lt;#channel&gt;<br><br>(Sop joins the chan)<br>* ChanServ sets mode: +o JohnJohnJohn<br>&lt;botnick&gt; Here it comes the Sop of the channel &lt;#channel&gt; welcome JohnJohnJohn!<br><br>(Founder joins the chan)<br>* ChanServ sets mode: +o JohnJohnJohn<br>&lt;botnick&gt; All rise now! The Founder has arrived! All hail JohnJohnJohn!<br><br><br>   Something like this to make the bot more dynamic and more colorful to look..<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=9332">JohnJohnJohn</a> — Sun Oct 07, 2007 2:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-10-06T19:18:06-04:00</updated>

		<published>2007-10-06T19:18:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76431#p76431</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76431#p76431"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76431#p76431"><![CDATA[
The following code will message the channel <em class="text-italics">instead</em> of writing to a file.<div class="codebox"><p>Code: </p><pre><code>bind mode - * mode:whybind notc - * notc:whyproc mode:why { nick uhost hand chan mchange victim } {   # check mode change   if { $mchange != "+o" } { return 0 }   # check nick and uhost opper is chanserv   if { $nick != "ChanServ" || $uhost != "service@dal.net"} { return 0 }   # send a "why" message to chanserv   set chanserv chanserv@services.dal.net   puthelp "PRIVMSG $chanserv :WHY $chan $victim"}proc notc:why { nick uhost hand text {dest ""}} {   global botnick   set text [stripcodes b $text]   # destination must be the bot   if { $dest != $botnick } { return 0 }   # check nick and uhost is chanserv   if { $nick != "ChanServ" || $uhost != "service@dal.net"} { return 0 }   # a WHY result?   set matchrule {* has * access to *}   if { ![string match $matchrule $text] } { return 0 }   set channel [string trim [lindex [split $text] 5] .]   putserv "privmsg $channel :\00306$text"}</code></pre></div>An alternative to messaging the channel is to send an Op notice:<br><br>Replace:<div class="codebox"><p>Code: </p><pre><code>putserv "privmsg $channel :\00306$text"</code></pre></div>with:<div class="codebox"><p>Code: </p><pre><code>putserv "NOTICE @$channel :\00306$text"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sat Oct 06, 2007 7:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-10-06T10:38:26-04:00</updated>

		<published>2007-10-06T10:38:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76417#p76417</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76417#p76417"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76417#p76417"><![CDATA[
ok here is the code.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> i found that one when i searched google.. It's more efficient for me if the bot will message the channel of what particular access does the op has rather than putting the informations in why.txt <br>Whether it's Aop Sop or Founder..<div class="codebox"><p>Code: </p><pre><code>bind mode - * mode:whybind notc - * notc:whyproc mode:why { nick uhost hand chan mchange victim } {   # check mode change   if { $mchange != "+o" } { return 0 }   # check nick and uhost opper is chanserv   if { $nick != "ChanServ" } { return 0 }   if { $uhost != "service@dal.net" } { return 0 }   # send a "why" message to chanserv   set chanserv chanserv@services.dal.net   puthelp "PRIVMSG $chanserv :WHY $chan $victim"}proc notc:why { nick uhost hand text dest} {   global botnick   # destination must be the bot   if { $dest != $botnick } { return 0 }   # check nick and uhost is chanserv   if { $nick != "ChanServ" } { return 0 }   if { $uhost != "service@dal.net" } { return 0 }   # a WHY result?   set matchrule {* has * access to *}   if { ![string match $matchrule $text] } { return 0 }   # save the why result to fule   set cformat {%d-%b-%Y-%H:%M}   set stamp [clock format [clock seconds] -format $cformat]   set fd [open WHY.txt a+]   puts $fd "$stamp $text"   close $fd}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9332">JohnJohnJohn</a> — Sat Oct 06, 2007 10:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-10-06T04:11:18-04:00</updated>

		<published>2007-10-06T04:11:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76406#p76406</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76406#p76406"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76406#p76406"><![CDATA[
@JohnJohnJohn: Re-edit your post correctly using <div class="codebox"><p>Code: </p><pre><code></code></pre></div> tags (re-pasting the entire code) as it will make it easier to read.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sat Oct 06, 2007 4:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-10-06T01:20:04-04:00</updated>

		<published>2007-10-06T01:20:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76402#p76402</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76402#p76402"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76402#p76402"><![CDATA[
i searched google and i found one similar on the script that i want but the difference is that upon a +o mode by chanserv the script sends out a why to chanserv and put the result in the file why.txt instead of sending out the informations in the channel. Here's the one i found in google;<br><br><br>package require Tcl 8.0<br><br>bind mode - * mode:why<br><br>bind notc - * notc:why<br><br>proc mode:why { nick uhost hand chan mchange victim } {<br><br>   # check mode change<br><br>   if { $mchange != "+o" } { return 0 }<br><br>   # check nick and uhost opper is chanserv<br><br>   if { $nick != "ChanServ" } { return 0 }<br><br>   if { $uhost != "<a href="mailto:service@dal.net">service@dal.net</a>" } { return 0 }<br><br>   # send a "why" message to chanserv<br><br>   set chanserv <a href="mailto:chanserv@services.dal.net">chanserv@services.dal.net</a><br><br>   puthelp "PRIVMSG $chanserv :WHY $chan $victim"<br><br>}<br><br>proc notc:why { nick uhost hand text dest} {<br><br>   global botnick<br><br>   # destination must be the bot<br><br>   if { $dest != $botnick } { return 0 }<br><br>   # check nick and uhost is chanserv<br><br>   if { $nick != "ChanServ" } { return 0 }<br><br>   if { $uhost != "<a href="mailto:service@dal.net">service@dal.net</a>" } { return 0 }<br><br>   # a WHY result?<br><br>   set matchrule {* has * access to *}<br><br>   if { ![string match $matchrule $text] } { return 0 }<br><br>   # save the why result to fule<br><br>   set cformat {%d-%b-%Y-%H:%M}<br><br>   set stamp [clock format [clock seconds] -format $cformat]<br><br>   set fd [open WHY.txt a+]<br><br>   puts $fd "$stamp $text"<br><br>   close $fd<br><br>}<br><br><br>  I tried to edit that one but still the informations are sent in the partyline not in the channel where the Op joined.  Am really a stranger in TCL i just find ways to learn on it.. <br>  <br>  Anyway thanks for the sites u gave rosc2112, that could help me to get start through.. But hopefully someone could help me about the script.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9332">JohnJohnJohn</a> — Sat Oct 06, 2007 1:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-10-05T13:48:21-04:00</updated>

		<published>2007-10-05T13:48:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76393#p76393</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76393#p76393"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76393#p76393"><![CDATA[
Read about how to use bind mode:<br><a href="http://tcl.powersource.cx/eggtclh11.php" class="postlink">http://tcl.powersource.cx/eggtclh11.php</a><blockquote class="uncited"><div>MODE (stackable)  bind mode &lt;flags&gt; &lt;mask&gt; &lt;proc&gt;<br>proc-name &lt;nick&gt; &lt;user@host&gt; &lt;handle&gt; &lt;channel&gt; &lt;mode-change&gt; &lt;victim&gt;<br>Description: mode changes are broken down into their component parts before being sent here, so the &lt;mode-change&gt; will always be a single mode, such as "+m" or "-o". victim will show the argument of the mode change (for o/v/b/e/I) or "" if the set mode does not take an argument. Flags are ignored. The bot's automatic response to a mode change will happen AFTER all matching Tcl procs are called. The mask will be matched against '#channel +/-modes' and can contain wildcards.<br>If it is a server mode, nick will be "", user@host is the server name, and handle is *.</div></blockquote>Using $args is a special case in tcl. Refer to: <a href="http://www.tcl.tk/man/tcl8.4/TclCmd/proc.htm" class="postlink">http://www.tcl.tk/man/tcl8.4/TclCmd/proc.htm</a> :<blockquote class="uncited"><div>There is one special case to permit procedures with variable numbers of arguments. If the last formal argument has the name args, then a call to the procedure may contain more actual arguments than the procedure has formals. In this case, all of the actual arguments starting at the one that would be assigned to args are combined into a list (as if the list command had been used); this combined value is assigned to the local variable args.</div></blockquote>You probably want to add and use the $victim var to get the nick whose mode was changed..  <div class="codebox"><p>Code: </p><pre><code>proc log:mode {nick uhost hand channel mode victim} {putquick "PRIVMSG $channel :$nick sets $mode in $channel for $victim because of the identification to his nickname." }</code></pre></div>etc.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Fri Oct 05, 2007 1:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2007-10-05T13:24:57-04:00</updated>

		<published>2007-10-05T13:24:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76392#p76392</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76392#p76392"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76392#p76392"><![CDATA[
=)<br><br>try this:<br><div class="codebox"><p>Code: </p><pre><code>bind mode - +o log:mode proc log:mode {nick uhost hand channel args} { global botnickif {$nick == $botnick} {return}putquick "PRIVMSG $channel :$nick sets $args in $channel because of the identification to his nickname." }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Fri Oct 05, 2007 1:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-10-05T10:59:56-04:00</updated>

		<published>2007-10-05T10:59:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76390#p76390</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76390#p76390"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76390#p76390"><![CDATA[
hrmm that works fine than the previous one but there's still an error, even if i sets mode -o the bot still mention that thing.. and if the bot deop itself it mentions the same thing..  Anyway thanks <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> i still appreciate it..[/b]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9332">JohnJohnJohn</a> — Fri Oct 05, 2007 10:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2007-10-05T09:57:12-04:00</updated>

		<published>2007-10-05T09:57:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76388#p76388</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76388#p76388"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76388#p76388"><![CDATA[
oops<br><br>try this:<br><br><div class="codebox"><p>Code: </p><pre><code>bind mode - *o log:mode proc log:mode {nick uhost hand channel args} { putquick "PRIVMSG $channel :$nick sets $args in $channel because of the identification to his nickname." }</code></pre></div><br>sry, i really dont know, how this aop/sop-stuff works. maybe "bind mode - *aop log:mode" and "bind mode - *sop log:mode" does the trick.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Fri Oct 05, 2007 9:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-10-04T22:10:02-04:00</updated>

		<published>2007-10-04T22:10:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76383#p76383</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76383#p76383"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76383#p76383"><![CDATA[
thanks for ya effort tadadadaaa i gladly appreciate it.. anyway the snippet runs good but there's something wrong on it. instead of the operator's nick the bot mentions the name of ChanServ<br><br>eg: <br>    <br>* ChanServ sets mode: +o JohnJohnJohn<br>-the bot replies-<br>&lt;botnick&gt; ChanServ is an operator in #channel because of identification to the nickname ChanServ<br><br>  -And hopefully you can add some stuff like the bot will identify if what kind of access does the operator has.<br>   For example if the Op is an Aop the bot will mention that he is an Aop.<br><br>eg: (JohnJohnJohn is Aop)<br><br>* ChanServ sets mode: +o JohnJohnJohn<br>-the bot replies-<br>&lt;botnick&gt; JohnJohnJohn is an Aop in #channel because of the identification to the nickname JohnJohnJohn<br><br>  -As well as Sop and Founder access-<br><br>eg: (JohnJohnJohn is Sop)<br><br>* ChanServ sets mode: +o JohnJohnJohn<br>-the bot replies-<br>&lt;botnick&gt; JohnJohnJohn is an Sop in #channel because of the identification to the nickname JohnJohnJohn<br><br>eg: (JohnJohnJohn is Founder)<br><br>* ChanServ sets mode: +o JohnJohnJohn<br>-the bot replies-<br>&lt;botnick&gt; JohnJohnJohn has FOUNDER access to #channel.  Reason: Identification to the founder's nickname, JohnJohnJohn.<br><br>  -or-<br><br>* ChanServ sets mode: +o JohnJohnJohn<br>-the bot replies-<br>&lt;botnick&gt; JohnJohnJohn has FOUNDER access to #channel.  Reason: Identification to services with the channel password.<br><br><br> --- Hope ya can help me out of that, am looking forward on it. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9332">JohnJohnJohn</a> — Thu Oct 04, 2007 10:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2007-10-04T06:39:40-04:00</updated>

		<published>2007-10-04T06:39:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76367#p76367</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76367#p76367"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76367#p76367"><![CDATA[
hi,<br><br>unfortunally i only know a way to make the bot recognize that someone is opped:<br><div class="codebox"><p>Code: </p><pre><code>bind mode - *o log:modeproc log:mode {nick uhost hand channel args} {putquick "PRIVMSG $channel :$nick is an operator in $channel because of identification to the nickname $nick"}</code></pre></div>maybe that gets you started. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Thu Oct 04, 2007 6:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[JohnJohnJohn]]></name></author>
		<updated>2007-09-25T08:16:43-04:00</updated>

		<published>2007-09-25T08:16:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76234#p76234</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76234#p76234"/>
		<title type="html"><![CDATA[A Chanserv why command that msg the channel.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76234#p76234"><![CDATA[
can anyone help me out of making a script which msg the channel whenever a OP join the specified channel of what particular access that the OP has. If his an Aop or an Sop or maybe the Channel Founder. A /chanserv why &lt;channel&gt; &lt;nick&gt; command.. The bot will automatically msg the channel of what particular access does the Op have.<br><br><br>Example:<br><br><strong class="text-strong">* ChanServ sets mode: +o JohnJohnJohn<br>#Then the bot responce<br>&lt;botnick&gt; JohnJohnJohn is an Aop in &lt;channel&gt; because of identification to the nickname JohnJohnJohn.</strong><br><br>The main purpose for this script is to let the other users in the channel know what type of access does the OP has.<br><br><br>Can anyone help me about that?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9332">JohnJohnJohn</a> — Tue Sep 25, 2007 8:16 am</p><hr />
]]></content>
	</entry>
	</feed>
