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

	<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>2009-01-29T10:40:34-04:00</updated>

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

		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-01-29T10:40:34-04:00</updated>

		<published>2009-01-29T10:40:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87151#p87151</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87151#p87151"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87151#p87151"><![CDATA[
spijon:<br>I would probably try something like this:<div class="codebox"><p>Code: </p><pre><code>bind pubm - "% *text*text2*" test:msgbind pubm - "% *text2*text*" test:msg</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu Jan 29, 2009 10:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spijon]]></name></author>
		<updated>2009-01-29T09:50:38-04:00</updated>

		<published>2009-01-29T09:50:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=87150#p87150</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=87150#p87150"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=87150#p87150"><![CDATA[
Is there a way so the wildcard/string only react when two words are used in a sentence.<br><br>ex: bind pubm - "% *text text2*" test:msg<br>"my text blalba text2" and and noget only on text or text2.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8142">spijon</a> — Thu Jan 29, 2009 9:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-05-04T05:04:25-04:00</updated>

		<published>2008-05-04T05:04:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82708#p82708</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82708#p82708"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82708#p82708"><![CDATA[
thank you!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Sun May 04, 2008 5:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-05-02T16:29:07-04:00</updated>

		<published>2008-05-02T16:29:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82689#p82689</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82689#p82689"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82689#p82689"><![CDATA[
args is a special variable, you really should'nt use it unless you know what you're doing...<br><br>Use something like this:<div class="codebox"><p>Code: </p><pre><code>proc testproc {nick host hand chan text} { set newtext [join [lrange [split $text] 2 end]] puthelp "PRIVMSG $chan :Test Successfull! ($newtext)"}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Fri May 02, 2008 4:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-05-02T16:20:58-04:00</updated>

		<published>2008-05-02T16:20:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82688#p82688</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82688#p82688"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82688#p82688"><![CDATA[
hmm...the bot reacts now, BUT...<br><div class="codebox"><p>Code: </p><pre><code>bind pubm " ??? \002Nimos\002 test" testprocproc testproc {nick host chan args} {putquick "privmsg $chan : Test Successfull! ($args)"</code></pre></div>returns<br><div class="codebox"><p>Code: </p><pre><code>* Thirildragon * Test Successfull(#germanfunserver {[3] &lt;Nimos&gt; test 123}) </code></pre></div>why is there so much in $args?<br>I want only the "123" in the variable...[/code]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Fri May 02, 2008 4:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-05-02T14:10:09-04:00</updated>

		<published>2008-05-02T14:10:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82681#p82681</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82681#p82681"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82681#p82681"><![CDATA[
Enclose the mask with {} to prevent any further parsing of the content (including command replacement [], variables $ and similar)<br><br>ie: bind pubm - {% some text*} theproc<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Fri May 02, 2008 2:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-05-02T07:14:37-04:00</updated>

		<published>2008-05-02T07:14:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82672#p82672</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82672#p82672"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82672#p82672"><![CDATA[
ooh...I found my mistake <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":?" title="Confused"> : <br>The echo bot writes the names of the talkers bold...<br><br>it worked with \002 in the bind <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br><br>last question:<br>how to integrate [] into the binding?<br><br>[*] gives an error message...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Fri May 02, 2008 7:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-05-01T19:40:06-04:00</updated>

		<published>2008-05-01T19:40:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82667#p82667</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82667#p82667"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82667#p82667"><![CDATA[
Then, if you can see the bots chatter in the console/dcc-partyline, it pretty much falls down to improper bindings..<br><br>Only other things I could think of, would be some other binding blocking, or possibly some ignore been added.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu May 01, 2008 7:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-05-01T18:06:31-04:00</updated>

		<published>2008-05-01T18:06:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82663#p82663</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82663#p82663"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82663#p82663"><![CDATA[
yes i see it talking<br><div class="codebox"><p>Code: </p><pre><code>.channel  NICKNAME             HANDLE     JOIN        IDLE  USER@HOST@Germanfunserver       germanfun  ---  O            germanfuns@gtanet....                                    </code></pre></div><div class="codebox"><p>Code: </p><pre><code>.whois germanfunsHANDLE    PASS NOTES FLAGS           LASTgermanfun  no   0     fghlopBQ        never (nowhere)</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Thu May 01, 2008 6:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-05-01T17:19:10-04:00</updated>

		<published>2008-05-01T17:19:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82662#p82662</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82662#p82662"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82662#p82662"><![CDATA[
Strange, since it's properly identified, the lastseen timestamp should've been updated. If you enable public chat on your console (.console +p), do you see the echobot talking through your console?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu May 01, 2008 5:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-05-01T11:06:31-04:00</updated>

		<published>2008-05-01T11:06:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82660#p82660</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82660#p82660"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82660#p82660"><![CDATA[
the handle is there....<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Thu May 01, 2008 11:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-05-01T09:04:27-04:00</updated>

		<published>2008-05-01T09:04:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82658#p82658</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82658#p82658"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82658#p82658"><![CDATA[
It sees the bot, but does it recognize it? (check the handle column).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu May 01, 2008 9:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-04-30T18:47:50-04:00</updated>

		<published>2008-04-30T18:47:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82647#p82647</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82647#p82647"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82647#p82647"><![CDATA[
If I use .channel the Eggdrop sees the echo bot, if i use .whois, the bot says "SEEN: Never!"<br><br>The Commands work if I used them, but if the echo-bot uses them, the Eggdrop dont hears them....<br><br>the masks are no problem anymore <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=9877">Nimos</a> — Wed Apr 30, 2008 6:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2008-04-30T18:31:50-04:00</updated>

		<published>2008-04-30T18:31:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82646#p82646</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82646#p82646"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82646#p82646"><![CDATA[
Examples of masks:<br>Given you'd like to match anything starting with "word", use "% word*"<br>To match anything containing "word", use "*word*"<br>To match string starting with word1 and ending with word2, use "% word1*word2"<br>And so on...<br><br>Long nicknames should'nt be a problem, only time you'd need to recompile your eggrop is if you'd like to use handles longer than 9 characters (think of htem as usernames within eggdrop). Use the .channel command from dcc-chat to see a channel-members listing from your eggdrop's point of view - usually helps identifying issues with someone not being properly identified.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Wed Apr 30, 2008 6:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nimos]]></name></author>
		<updated>2008-04-30T18:23:35-04:00</updated>

		<published>2008-04-30T18:23:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=82645#p82645</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=82645#p82645"/>
		<title type="html"><![CDATA[Binds with more than one word and a wildcard....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=82645#p82645"><![CDATA[
hm... scritp seems to work now, but ive got another strange problem now:<br><br>For that I have to tell you the situation:<br><br>OK: There is a gameserver, and its chat is echoed by a Bot into an IRC channel. The users can talk to the gameserver with !say.<br>I need to use Channel Commands from the gameserver, without minimizing or ending the game.<br>The Problem:<br><br>The Bot is not seeing the Channelbot!<br>I used .whois, the last seen was the 25.04.08<br>I readded the Bot, and now the eggrop says: Seen: Never!<br><br>The Name of the echo Bot is longer than 9 letters...I dont have a compiler on my shell, so i cant change the maximum... But the Bot has seen the Echo Bot before, so i think it is not a Name Problem...<br><br>Please help me!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9877">Nimos</a> — Wed Apr 30, 2008 6:23 pm</p><hr />
]]></content>
	</entry>
	</feed>
