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

	<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>2010-07-23T23:40:06-04:00</updated>

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

		<entry>
		<author><name><![CDATA[username]]></name></author>
		<updated>2010-07-23T23:40:06-04:00</updated>

		<published>2010-07-23T23:40:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=93649#p93649</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=93649#p93649"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=93649#p93649"><![CDATA[
<blockquote class="uncited"><div>...<br>how can u ban $address like *!*@host.org <br>...</div></blockquote>Change <div class="codebox"><p>Code: </p><pre><code>newban [maskhost "${nick}!${host}"] $::botnick "Automated Ban: Do not msg bots" 0</code></pre></div> to <div class="codebox"><p>Code: </p><pre><code>newban *!*@[lindex [split ${host} "@"] 1] $::botnick "Automated Ban: Do not msg bots" 0</code></pre></div>In $uhost you get adress like *!ident@host and you need to split it by "@" into two parts and add "*!*@" to the second part.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6813">username</a> — Fri Jul 23, 2010 11:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ashoq]]></name></author>
		<updated>2010-07-23T16:57:23-04:00</updated>

		<published>2010-07-23T16:57:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=93646#p93646</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=93646#p93646"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=93646#p93646"><![CDATA[
nice <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> its works !<br><br>but ! how can i !unban (cuse it bans again <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> )  <br>how can u ban $address like *!*@host.org <br><br><br>thnks  <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=11287">Ashoq</a> — Fri Jul 23, 2010 4:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-03T11:31:22-04:00</updated>

		<published>2009-05-03T11:31:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88663#p88663</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88663#p88663"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88663#p88663"><![CDATA[
Got a first draft..<br>Since private messages have no channel information, I'm currently making the assumption that being opped in any channel your eggdrop knows off is sufficient to avoid being banned.<br><br>Checks for a single channel, or a set of channels could be accomplished as well, with some additional coding. Using undernet's Cservice banlists would also require information on what channels to apply the ban on, so I'm sticking with eggdrop's internal banlist for now.<br><div class="codebox"><p>Code: </p><pre><code>bind msgm - * msgmDoBanproc msgmDoBan {nick host handle text} { if {[matchattr "ofvb|ofv" $handle] || [isop $nick]} {  return 1 } newban [maskhost "${nick}!${host}"] $::botnick "Automated Ban: Do not msg bots" 0 return 0}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sun May 03, 2009 11:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-02T21:30:41-04:00</updated>

		<published>2009-05-02T21:30:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88662#p88662</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88662#p88662"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88662#p88662"><![CDATA[
Not that much of a work, I'll have a look at it in a day or so.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat May 02, 2009 9:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scooterh]]></name></author>
		<updated>2009-05-02T18:39:35-04:00</updated>

		<published>2009-05-02T18:39:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88661#p88661</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88661#p88661"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88661#p88661"><![CDATA[
if you ever have time u mind tossing something simple to ignore if the are opped at the time of msg or is that something thats alot of code?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10631">scooterh</a> — Sat May 02, 2009 6:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-02T15:41:53-04:00</updated>

		<published>2009-05-02T15:41:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88658#p88658</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88658#p88658"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88658#p88658"><![CDATA[
Not like this, it will only ignore users added to the bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat May 02, 2009 3:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scooterh]]></name></author>
		<updated>2009-05-02T15:40:48-04:00</updated>

		<published>2009-05-02T15:40:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88657#p88657</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88657#p88657"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88657#p88657"><![CDATA[
one last simple question for you.<br><br>If someone is opped, will it ignore thier private messages?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10631">scooterh</a> — Sat May 02, 2009 3:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scooterh]]></name></author>
		<updated>2009-05-02T15:15:20-04:00</updated>

		<published>2009-05-02T15:15:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88656#p88656</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88656#p88656"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88656#p88656"><![CDATA[
thank you for your time and help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10631">scooterh</a> — Sat May 02, 2009 3:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-02T14:58:32-04:00</updated>

		<published>2009-05-02T14:58:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88655#p88655</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88655#p88655"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88655#p88655"><![CDATA[
You'd use the .bans and .-ban dcc chat commands to manage the internal banlist within your eggdrop.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat May 02, 2009 2:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scooterh]]></name></author>
		<updated>2009-05-02T14:57:06-04:00</updated>

		<published>2009-05-02T14:57:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88654#p88654</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88654#p88654"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88654#p88654"><![CDATA[
Great thanks chief that did the trick.<br><br>Now how does one unban them as if i use X or myself the bot rebans this as they have thier own DB it seems<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10631">scooterh</a> — Sat May 02, 2009 2:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-02T12:12:38-04:00</updated>

		<published>2009-05-02T12:12:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88650#p88650</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88650#p88650"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88650#p88650"><![CDATA[
Ahh, I see the issue now. Seems I swapped two arguments in the binding..<br>Alter the bind command to read as follows, and reload:<div class="codebox"><p>Code: </p><pre><code>bind msgm - * msgmDoBan</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat May 02, 2009 12:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scooterh]]></name></author>
		<updated>2009-05-02T11:47:29-04:00</updated>

		<published>2009-05-02T11:47:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88649#p88649</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88649#p88649"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88649#p88649"><![CDATA[
<blockquote class="uncited"><div>[09:43] #tater-sal# binds msgm all<br>Command bindings:<br>  TYPE FLGS     COMMAND              HITS BINDING (TCL)<br>  msgm -|-      -                       0 msgmDoBan<br>  msgm -|-      help seenstats          0 bs_help_msg_seenstats<br>  msgm -|-      help chanstats          0 bs_help_msg_chanstats<br>  msgm -|-      help seen               0 bs_help_msg_seen<br><br>.channel #texas<br>[09:44] #tater-sal# (#texas) channel<br>Channel #texas, 41 members, mode +tn:<br>Channel Topic: &lt;LiquidChickn&gt; i have no IQ<br>(n = owner, m = master, o = op, d = deop, b = bot)<br> NICKNAME     HANDLE     JOIN  IDLE  USER@HOST<br>@girl_on_cam  *         09:15       &lt;- it's me!<br> `Tom         *          ---    11m  <a href="mailto:IceChat7@dhcp7-163.geusnet.com">IceChat7@dhcp7-163.geusnet.com</a><br> Fantine      *          ---    29m  ~<a href="mailto:Fantine@ppp-70-249-34-95.dsl.austtx.swbell.net">Fantine@ppp-70-249-34-95.dsl.austtx.swbell.net</a><br> tater-salad  tater-sal  ---  N 16m  ~<a href="mailto:scooter@h189.116.155.207.dynamic.ip.windstream.net">scooter@h189.116.155.207.dynamic.ip.windstream.net</a><br> gnaja        *          ---    29m  ~<a href="mailto:stashash@ganjamonsta.users.undernet.org">stashash@ganjamonsta.users.undernet.org</a><br> KillaZ       *          ---     5m  <a href="mailto:KillaZ@Lucretia.users.undernet.org">KillaZ@Lucretia.users.undernet.org</a><br> YlwRosie     *          ---    21m  ~<a href="mailto:bumblebee@cpe-72-183-229-194.satx.res.rr.com">bumblebee@cpe-72-183-229-194.satx.res.rr.com</a><br> Budweiser84  *          ---    29m  ~Budweiser@76.6.67.92<br> radi0chik    *          ---    16m  ~<a href="mailto:youwish@vide0chik.users.undernet.org">youwish@vide0chik.users.undernet.org</a><br> ^Jenn^       *          ---    29m  ~<a href="mailto:jenn@JennAngel.users.undernet.org">jenn@JennAngel.users.undernet.org</a><br> lynnn        *          ---    29m  ~<a href="mailto:lynnnn@lynnc.users.undernet.org">lynnnn@lynnc.users.undernet.org</a><br> km5r_aux     *          ---    29m  ~<a href="mailto:none@adsl-70-129-113-78.dsl.rcsntx.swbell.net">none@adsl-70-129-113-78.dsl.rcsntx.swbell.net</a><br> phil         *          ---    29m  <a href="mailto:phil@philg.users.undernet.org">phil@philg.users.undernet.org</a><br> SuperBoY`    *          ---    29m  ~mellanie@89.123.154.205<br> AwesumPossum *          ---    29m  ~<a href="mailto:get@tx-71-54-110-228.dhcp.embarqhsd.net">get@tx-71-54-110-228.dhcp.embarqhsd.net</a><br>@slvrzzz      *          ---    29m  ~<a href="mailto:slvr@cpe-24-242-202-232.tx.res.rr.com">slvr@cpe-24-242-202-232.tx.res.rr.com</a><br> darvie       *          ---    29m  ~darva@70.240.206.168<br> WebAlmighty  *          ---    29m  ~<a href="mailto:webalmigh@webadillo.users.undernet.org">webalmigh@webadillo.users.undernet.org</a><br> Aenima       *          ---     4m  ~<a href="mailto:A.hayes@Aenima.users.undernet.org">A.hayes@Aenima.users.undernet.org</a><br> NegPol       *          ---    29m  ~<a href="mailto:negpol@cpe-76-187-78-200.tx.res.rr.com">negpol@cpe-76-187-78-200.tx.res.rr.com</a><br> FemDragon    *          ---    29m  ~<a href="mailto:femdragon@FemDragon.users.undernet.org">femdragon@FemDragon.users.undernet.org</a><br> Lobster      *          ---    29m  ~rakim@98.225.16.170<br> Tom`         *          ---    29m  <a href="mailto:mAdcLoWnZ@WongFoU.users.undernet.org">mAdcLoWnZ@WongFoU.users.undernet.org</a><br> tacoman      *          ---    29m  tacoman@99.184.81.134<br> WarKnight    *          ---    29m  <a href="mailto:WK1@StormKnight.users.undernet.org">WK1@StormKnight.users.undernet.org</a><br> zx|hashing   *          ---    29m  ~<a href="mailto:zxorph@140M41.oasis.mediatti.net">zxorph@140M41.oasis.mediatti.net</a><br> GOATBOY      *          ---    29m  <a href="mailto:ghost@cpe-70-112-54-19.austin.res.rr.com">ghost@cpe-70-112-54-19.austin.res.rr.com</a><br>@JacklynAnn   *          ---    29m  <a href="mailto:JacklynAnn@cpe-76-183-121-218.tx.res.rr.com">JacklynAnn@cpe-76-183-121-218.tx.res.rr.com</a><br> zonker       *          ---    29m  <a href="mailto:ebf@thirdshift.org">ebf@thirdshift.org</a><br> darvawrk     *          ---    29m  ~<a href="mailto:jenn@ng1.cptxoffice.net">jenn@ng1.cptxoffice.net</a><br> teri         *          ---    29m  ~<a href="mailto:doodlebug@teri.users.undernet.org">doodlebug@teri.users.undernet.org</a><br> MytiMouth    *          ---    29m  ~<a href="mailto:MytiMouth@user-105n5gv.cable.mindspring.com">MytiMouth@user-105n5gv.cable.mindspring.com</a><br>+Trey         *          ---    29m  <a href="mailto:bacchus@pool-173-74-225-16.dllstx.fios.verizon.net">bacchus@pool-173-74-225-16.dllstx.fios.verizon.net</a><br> vlaad-sc440  *          ---    29m  <a href="mailto:vlaad@99-13-214-109.lightspeed.hstntx.sbcglobal.net">vlaad@99-13-214-109.lightspeed.hstntx.sbcglobal.net</a><br> Pyro-VM      *          ---    16m  ~<a href="mailto:pyro1rob@pyro1rob.users.undernet.org">pyro1rob@pyro1rob.users.undernet.org</a><br> Area-51      *          ---    29m  ~<a href="mailto:jamie@nelroshennie.users.undernet.org">jamie@nelroshennie.users.undernet.org</a><br> sa           *          ---    29m  ~<a href="mailto:zitz@99-153-75-18.lightspeed.austtx.sbcglobal.net">zitz@99-153-75-18.lightspeed.austtx.sbcglobal.net</a><br>@`Jadey`      *          ---    29m  jade@10.0.0.50<br>@X            *          ---    18m  <a href="mailto:cservice@undernet.org">cservice@undernet.org</a><br> Tr|p         *         09:43        ~trip@99.8.37.246<br> GreyBeer`D   *         09:43        ~<a href="mailto:bnkjw@cpe-72-183-249-172.satx.res.rr.com">bnkjw@cpe-72-183-249-172.satx.res.rr.com</a><br>End of channel info.</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10631">scooterh</a> — Sat May 02, 2009 11:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-02T11:44:19-04:00</updated>

		<published>2009-05-02T11:44:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88648#p88648</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88648#p88648"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88648#p88648"><![CDATA[
Issue the command ".bind msgm all" and post the result.<br>Also issue the command ".channel #yourchan" and post the result.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat May 02, 2009 11:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scooterh]]></name></author>
		<updated>2009-05-02T11:42:48-04:00</updated>

		<published>2009-05-02T11:42:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88647#p88647</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88647#p88647"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88647#p88647"><![CDATA[
only user that has access to bot is myself and don't see anything in the eggdrop log<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10631">scooterh</a> — Sat May 02, 2009 11:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-05-02T11:36:44-04:00</updated>

		<published>2009-05-02T11:36:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=88646#p88646</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=88646#p88646"/>
		<title type="html"><![CDATA[private message ban]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=88646#p88646"><![CDATA[
This script does not care for X users, but only users added to the bot.<br><br>Do you see any error messages logged in your bot?<br>Also, could you double-check that the people testing the command is not recognized by the bot? Use the <strong class="text-strong">.channels</strong> <em class="text-italics">#yourchanne</em>l dcc chat command for this.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sat May 02, 2009 11:36 am</p><hr />
]]></content>
	</entry>
	</feed>
