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

	<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-09-03T23:04:37-04:00</updated>

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

		<entry>
		<author><name><![CDATA[vigilant]]></name></author>
		<updated>2007-09-03T23:04:37-04:00</updated>

		<published>2007-09-03T23:04:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=75677#p75677</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=75677#p75677"/>
		<title type="html"><![CDATA[The ! character]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=75677#p75677"><![CDATA[
Thanks a lot  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7195">vigilant</a> — Mon Sep 03, 2007 11:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-09-03T20:35:51-04:00</updated>

		<published>2007-09-03T20:35:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=75671#p75671</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=75671#p75671"/>
		<title type="html"><![CDATA[Re: The ! character]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=75671#p75671"><![CDATA[
<blockquote class="uncited"><div>What does it mean when you do {![command]}<br>And where can i read more about these? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote><a href="http://www.tcl.tk/" class="postlink">Tcl Developer Site</a> could be a good place to start.<br><br>Your example isn't complete as the <a href="http://tcltk.free.fr/man/TclCmd/expr.php3#M7" class="postlink">logical NOT</a> is used within a conditional statement.<br><br>Simply put (your example) means:<div class="codebox"><p>Code: </p><pre><code>if {NOT [command]} {   then do something}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Sep 03, 2007 8:35 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2007-09-03T16:18:14-04:00</updated>

		<published>2007-09-03T16:18:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=75668#p75668</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=75668#p75668"/>
		<title type="html"><![CDATA[The ! character]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=75668#p75668"><![CDATA[
if you mean inside an if statement, ! means if it failed.<br><div class="codebox"><p>Code: </p><pre><code>if {[command]} { # [command] returned 1 } else { [command] returned 0 }if {![command]} { # [command] returned 0 } else { [command returned 1 }</code></pre></div>very rough example.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Mon Sep 03, 2007 4:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-09-03T15:57:50-04:00</updated>

		<published>2007-09-03T15:57:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=75667#p75667</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=75667#p75667"/>
		<title type="html"><![CDATA[The ! character]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=75667#p75667"><![CDATA[
Presumably it means someone is trying to exploit your bot by using tcl special chars in a command attempt..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Sep 03, 2007 3:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[vigilant]]></name></author>
		<updated>2007-09-03T14:15:04-04:00</updated>

		<published>2007-09-03T14:15:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=75664#p75664</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=75664#p75664"/>
		<title type="html"><![CDATA[The ! character]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=75664#p75664"><![CDATA[
What does it mean when you do {![command]}<br>And where can i read more about these? <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=7195">vigilant</a> — Mon Sep 03, 2007 2:15 pm</p><hr />
]]></content>
	</entry>
	</feed>
