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

	<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-04-03T09:56:04-04:00</updated>

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

		<entry>
		<author><name><![CDATA[barman]]></name></author>
		<updated>2008-04-03T09:56:04-04:00</updated>

		<published>2008-04-03T09:56:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82140#p82140</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82140#p82140"/>
		<title type="html"><![CDATA[timevoice changing in a regchat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82140#p82140"><![CDATA[
<blockquote class="uncited"><div>Probably, I usually just use a straight format.<br>That's what I get for trying to make it "easily readable".  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><br><div class="codebox"><p>Code: </p><pre><code>set vchannel "#channel"bind msg - voiceme voicemeproc voiceme {n u h t} {   if {[onchan $n $::vchannel]} {putserv "MODE $::vchannel +v $n"} else {putserv "PRIVMSG $n :You are not in $::vchannel"}}</code></pre></div>[Edit: the forum splits it, so make it a single line and it's fine]</div></blockquote>then they wait at their turn? Where do i have to put the code in the script?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9321">barman</a> — Thu Apr 03, 2008 9:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2008-04-01T17:08:38-04:00</updated>

		<published>2008-04-01T17:08:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82113#p82113</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82113#p82113"/>
		<title type="html"><![CDATA[timevoice changing in a regchat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82113#p82113"><![CDATA[
Probably, I usually just use a straight format.<br>That's what I get for trying to make it "easily readable".  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><br><div class="codebox"><p>Code: </p><pre><code>set vchannel "#channel"bind msg - voiceme voicemeproc voiceme {n u h t} {   if {[onchan $n $::vchannel]} {putserv "MODE $::vchannel +v $n"} else {putserv "PRIVMSG $n :You are not in $::vchannel"}}</code></pre></div>[Edit: the forum splits it, so make it a single line and it's fine]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Tue Apr 01, 2008 5:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2008-04-01T00:37:24-04:00</updated>

		<published>2008-04-01T00:37:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82102#p82102</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82102#p82102"/>
		<title type="html"><![CDATA[timevoice changing in a regchat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82102#p82102"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>if {[onchan $n $::vchannel]} {putserv "MODE $::vchannel +v $n"} else {putserv "PRIVMSG $n :You are not in $::vchannel"}</code></pre></div>Pretty sure you gotta have it like this, as <em class="text-italics">else</em> isn't really a tcl command but an uninterpreted token (in the same class as then) used to construct <strong class="text-strong">if</strong>/then/else evaluations. <strong class="text-strong">If</strong> is <span style="text-decoration:underline">required</span>, <strong class="text-strong">then</strong> or <strong class="text-strong">else</strong> are merely <span style="text-decoration:underline">cosmetic</span> (optional).<div class="codebox"><p>Code: </p><pre><code>if {condition} then {do this} else {do that}if {condition}{do this}{do that}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Tue Apr 01, 2008 12:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2008-03-31T22:58:59-04:00</updated>

		<published>2008-03-31T22:58:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82101#p82101</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82101#p82101"/>
		<title type="html"><![CDATA[timevoice changing in a regchat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82101#p82101"><![CDATA[
untested<div class="codebox"><p>Code: </p><pre><code>set vchannel "#channel"bind msg - voiceme voicemeproc voiceme {n u h t} {   if {[onchan $n $::vchannel]} {putserv "MODE $::vchannel +v $n"}   else {putserv "PRIVMSG $n :You are not in $::vchannel"}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Mon Mar 31, 2008 10:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[barman]]></name></author>
		<updated>2008-03-31T17:40:31-04:00</updated>

		<published>2008-03-31T17:40:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82098#p82098</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82098#p82098"/>
		<title type="html"><![CDATA[timevoice changing in a regchat]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82098#p82098"><![CDATA[
What do i have to change so that ppl have to demand in pm a voice, waiting at their turn and than talk a few minutes? when they leave the room they have to renew their registration.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9321">barman</a> — Mon Mar 31, 2008 5:40 pm</p><hr />
]]></content>
	</entry>
	</feed>
