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

	<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-04-30T07:01:33-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Dizzle]]></name></author>
		<updated>2005-04-30T07:01:33-04:00</updated>

		<published>2005-04-30T07:01:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48759#p48759</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48759#p48759"/>
		<title type="html"><![CDATA[Voice scripts]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48759#p48759"><![CDATA[
if have tried something, and it worked <br><br>dont know if anybody can use it, butt im posting it anyway  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"> ,  butt here is the script. <br><div class="codebox"><p>Code: </p><pre><code>bind join - "*" voice:nicks proc voice:nicks {nick uhost hand chan} { if {[botisop $chan] &amp;&amp; ([string match "NL|*" $nick] || [string match "HOL|*" $nick] || [string match "NED|*" $nick])} { pushmode $chan +v $nick puthelp "NOTICE $nick : Heey een echte holland fan, echte hollanders verdienen voice, veel plezier in #holland"} } bind nick - "*" voice:nickchproc voice:nickch {nick uhost hand chan newnick} { if {[botisop $chan] &amp;&amp; ([string match "NL|*" $newnick] || [string match "HOL|*" $newnick] || [string match "NED|*" $newnick])} { pushmode $chan +v $newnick puthelp "NOTICE $nick : Heey een echte holland fan, echte hollanders verdienen voice, veel plezier in #holland"} } </code></pre></div>it gives voice too ppl with the tag NL| HOL| NED|,  on join and on nickchange <br><br>thx for advice<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6156">Dizzle</a> — Sat Apr 30, 2005 7:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-04-28T16:55:11-04:00</updated>

		<published>2005-04-28T16:55:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48673#p48673</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48673#p48673"/>
		<title type="html"><![CDATA[Voice scripts]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48673#p48673"><![CDATA[
it wont work, you have to use rather:<br>{oldnick uhost hand chan nick}<br>as arguments ^^<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Thu Apr 28, 2005 4:55 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-04-28T16:28:38-04:00</updated>

		<published>2005-04-28T16:28:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48671#p48671</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48671#p48671"/>
		<title type="html"><![CDATA[Voice scripts]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48671#p48671"><![CDATA[
Try it <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=3723">^DooM^</a> — Thu Apr 28, 2005 4:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dizzle]]></name></author>
		<updated>2005-04-28T15:06:23-04:00</updated>

		<published>2005-04-28T15:06:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=48669#p48669</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=48669#p48669"/>
		<title type="html"><![CDATA[Voice scripts]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=48669#p48669"><![CDATA[
I have this script too voice ppl with this Tag for there name <br><div class="codebox"><p>Code: </p><pre><code>bind join - "*" voice:nicks  proc voice:nicks {nick uhost hand chan} {  if {[botisop $chan] &amp;&amp; ([string match "NL|*" $nick] || [string match "HOL|*" $nick])} {   pushmode $chan +v $nick   } } </code></pre></div>I like too give ppl voice when they change nick when already in channel <br><br>is it like this ( i found this in tcl-commands.doc)<br><div class="codebox"><p>Code: </p><pre><code>bind nick - "*" voice:nickchange proc voice:nickchange {nick uhost hand chan} {  if {[botisop $chan] &amp;&amp; ([string match "NL|*" $nick] || [string match "HOL|*" $nick])} {   pushmode $chan +v $nick   } } </code></pre></div>is this the right code ??<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6156">Dizzle</a> — Thu Apr 28, 2005 3:06 pm</p><hr />
]]></content>
	</entry>
	</feed>
