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

	<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-02-11T20:23:28-04:00</updated>

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

		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-02-11T20:23:28-04:00</updated>

		<published>2005-02-11T20:23:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46538#p46538</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46538#p46538"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46538#p46538"><![CDATA[
Aye my bad sorry mate..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Fri Feb 11, 2005 8:23 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-02-11T19:37:16-04:00</updated>

		<published>2005-02-11T19:37:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46536#p46536</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46536#p46536"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46536#p46536"><![CDATA[
I think what he meant with $split_uhost is the splitted uhost that he gave in his first step.<blockquote class="uncited"><div>- So we just split $uhost from @ ==&gt; [split $uhost @]</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Fri Feb 11, 2005 7:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-02-11T13:16:16-04:00</updated>

		<published>2005-02-11T13:16:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46530#p46530</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46530#p46530"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46530#p46530"><![CDATA[
<blockquote class="uncited"><div>- [lindex $split_uhost 1] ==&gt; { domain.host.com } </div></blockquote>should of been.<div class="codebox"><p>Code: </p><pre><code>- [lindex [split $uhost @] 1] ==&gt; { domain.host.com } </code></pre></div>damn those typo's  <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=3723">^DooM^</a> — Fri Feb 11, 2005 1:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-02-11T09:43:12-04:00</updated>

		<published>2005-02-11T09:43:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46521#p46521</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46521#p46521"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46521#p46521"><![CDATA[
In TCL binds for the eggdrop you in almost all cases have the user@host of the user who triggered the bind. Generally we use the variable as "host", "uhost" or whatever we like.<br><br>Supposing the variable is: $uhost<br>The persons <a href="mailto:ident@domain.host.com">ident@domain.host.com</a> will be $uhost.<br><br>- So we just split $uhost from @ ==&gt; [split $uhost @]<br>- Now we have to 2 elements in a list ==&gt; { ident domain.host.com }<br>- Then we choose the 2nd element, which has list index number "1"<br>- [lindex $split_uhost 1] ==&gt; { domain.host.com }<br><br>So if we make a new variable for your banmask, it will be:<br><br>set banmask "*!*@[lindex [split $uhost @] 1]"<br><br><br>(Note: We have to add *!*@ infront because you want the banmask in that format)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Fri Feb 11, 2005 9:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-02-10T17:57:10-04:00</updated>

		<published>2005-02-10T17:57:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46499#p46499</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46499#p46499"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46499#p46499"><![CDATA[
<blockquote class="uncited"><div><img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed">  Doh i always did get that the wrong way round..</div></blockquote>lol, happens to me alot with different commands <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Feb 10, 2005 5:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-02-10T11:31:21-04:00</updated>

		<published>2005-02-10T11:31:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46488#p46488</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46488#p46488"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46488#p46488"><![CDATA[
<img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed">  Doh i always did get that the wrong way round..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Thu Feb 10, 2005 11:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-02-10T10:50:35-04:00</updated>

		<published>2005-02-10T10:50:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46486#p46486</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46486#p46486"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46486#p46486"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>.+ban #channel *!*@domain.com</code></pre></div></div></blockquote><blockquote class="uncited"><div>### +ban &lt;hostmask&gt; [channel] [%&lt;XdXhXm&gt;] [comment]<br>Adds a ban to the list of permanent bans stored on the bot,<br>with optional comment and bantime. This ban will be in effect for<br>every channel on the bot if no channel is supplied, and is stored<br>with your nickname and comment. Prefixing a comment with @ will<br>make it only visible within the bot. Bantime has to be expressed<br>in days, hours and/or minutes.</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Feb 10, 2005 10:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-02-10T09:40:38-04:00</updated>

		<published>2005-02-10T09:40:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46485#p46485</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46485#p46485"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46485#p46485"><![CDATA[
to ban just a host from the partyline do <div class="codebox"><p>Code: </p><pre><code>.+ban *!*@domain.com</code></pre></div>for a global ban or <div class="codebox"><p>Code: </p><pre><code>.+ban #channel *!*@domain.com</code></pre></div>for channel specific bans. you can add a reason at the end of the bans if you wish todo so. this is the only way todo as you asked without using a specific script.<br><br>Hope this helps.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Thu Feb 10, 2005 9:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[timew]]></name></author>
		<updated>2005-02-10T07:45:56-04:00</updated>

		<published>2005-02-10T07:45:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46482#p46482</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46482#p46482"/>
		<title type="html"><![CDATA[banmask assistance]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46482#p46482"><![CDATA[
Hi,<br><br>I've just read through some of the banmask pages available on this already and I'm a tad confused.  It seems a full procedure is needed to be added to the bot.<br><br>I'm used a default compile of eggdrop 1.6.15 and I use a user called "lamer" with flags +dk and with hosts added to it that I want to ban.<br><br>Most of these are *!*@domain.com type bans but it bans them at *!ident*@domain.com and I really want it to ban at *!*@domain.com over any sort of ident banning.<br><br>Is there a simple way I can make the eggdrop ban at the exact host that is given in the lamer users host.  I thought this would be the most obvious system to use.  Use the host that's entered.  Otherwise a solution for changing / modding the bot to just ban at *!*@domain.com type bans and I'll be careful on the hosts I'll add.<br><br>If it's easier to use a TCL script that contains hosts and uses this style of banning I'm all ears.  Please pass on a link it's available.<br><br>Thanks for any help in advance<br>TimeW<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5980">timew</a> — Thu Feb 10, 2005 7:45 am</p><hr />
]]></content>
	</entry>
	</feed>
