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

	<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>2006-09-18T16:40:25-04:00</updated>

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

		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2006-09-18T16:40:25-04:00</updated>

		<published>2006-09-18T16:40:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66414#p66414</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66414#p66414"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66414#p66414"><![CDATA[
I use a little script called "Flag on Join"  to send msg or notice to people when they join a channel. It's a nice script, I modified my copy some, but here is the original:<br><a href="http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&amp;id=126" class="postlink">http://www.egghelp.org/cgi-bin/tcl_arch ... oad&amp;id=126</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Sep 18, 2006 4:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-18T03:19:24-04:00</updated>

		<published>2006-09-18T03:19:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66399#p66399</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66399#p66399"/>
		<title type="html"><![CDATA[:)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66399#p66399"><![CDATA[
Heay rosc2112 Thanks for your uscha good advise i will try my best <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">) but after my examz finished untill i ned just notice command that on join the BOT notice then Joined nick that i have those commands for Publick Thanks agian &amp; agian <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">)<br>Regards<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Mon Sep 18, 2006 3:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2006-09-18T03:10:15-04:00</updated>

		<published>2006-09-18T03:10:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66398#p66398</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66398#p66398"/>
		<title type="html"><![CDATA[Re: heay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66398#p66398"><![CDATA[
<blockquote class="uncited"><div>can u please make TCL </div></blockquote>No, I can't.. The point of my reply and pretty much everyone elses, was to show you how to do it yourself. It's not hard. Learn. You'll feel very happy knowing you could do it yourself.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Mon Sep 18, 2006 3:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-18T03:04:03-04:00</updated>

		<published>2006-09-18T03:04:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66396#p66396</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66396#p66396"/>
		<title type="html"><![CDATA[Heay Thanks it works]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66396#p66396"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind pub - !slap slapproc proc slapproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :Slap who? Or did you want me to slap YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION slaps so Hard tell me How you feel Now $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also ,. please!"      } } bind pub - !kik kikproc proc kikproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :kick who? Or did you want me to kick YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION kicks so Hard tell me How you feel Now $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !kiss kissproc proc kissproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :kiss who? Or did you want me to kiss YOU on Lips, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION kiss On lips Aow What Lovly lips Lipstick test is so Nice $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !hugs hugsproc proc hugsproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :hugs who? Or did you want me to hugs YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION Hugs So So Tit wow you are soft like Cack lolx $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !love loveproc proc loveproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :love who? Or did you want me to love YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION Love More then anyone on the InterNet Media Happy $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !flood floodproc proc floodproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :flood who? Or did you want me to flood YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood FLood  Boooooooooooooooooooooooooooo $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !winks winksproc proc winksproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :wink who? Or did you want me to winks YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION winks to Beauty  $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !rubs rubsproc proc rubsproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :rubs who? Or did you want me to Rubs YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION Rubs the hidden solip beauty of $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } bind pub - !hate hateproc proc hateproc {nick uhost hand chan text} {      set text [split $text]      if {$text == ""} {             puthelp "PRIVMSG $chan :hate who? Or did you want me to hate YOU, $nick?"      } elseif {[onchan $text $chan]} {             puthelp "PRIVMSG $chan :\001ACTION Love More then anyone on the InterNet Media Happy ? $text \001"      } else {             puthelp "PRIVMSG $chan :No one here by that name or remove space after nick also DOT CUMA . , Please!"      } } </code></pre></div>That Works <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">) thaks alot now i need a Small help more just anyone Join he do msg him that i have those Commands !slaps !hugs Blah blah i wana put it in this COde thankas once agian:))<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Mon Sep 18, 2006 3:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2006-09-17T17:32:39-04:00</updated>

		<published>2006-09-17T17:32:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66388#p66388</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66388#p66388"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66388#p66388"><![CDATA[
How about changing the topic of the original post to "Help with a <strong class="text-strong">Large</strong> Script"?<br><br>There are literally tonnes of these annoying scripts all over the place; moxfun being just one of them.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sun Sep 17, 2006 5:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2006-09-17T15:15:16-04:00</updated>

		<published>2006-09-17T15:15:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66384#p66384</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66384#p66384"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66384#p66384"><![CDATA[
How about you post what you have right now and we'll tell you what's wrong.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Sun Sep 17, 2006 3:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-17T08:02:25-04:00</updated>

		<published>2006-09-17T08:02:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66376#p66376</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66376#p66376"/>
		<title type="html"><![CDATA[heay]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66376#p66376"><![CDATA[
can u please make TCL &amp; send me on <a href="mailto:Thanhas@gmail.com">Thanhas@gmail.com</a><br>coz i try alot but ia m still not getting Please Put Those things<br><br>!Slap<br>!kik<br>!kiss<br>!hugs<br>!rubs<br>!haros<br>!flood<br>!love<br>!winks<br>!ping<br>!Hate<br>!care<br>!hc<br>!sleep<br><br>Thanks if u could send i will Put msg my self just type in the msg place MSG HERE then i can add msg thanks agian<br>Regards<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Sun Sep 17, 2006 8:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2006-09-17T06:34:05-04:00</updated>

		<published>2006-09-17T06:34:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66372#p66372</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66372#p66372"/>
		<title type="html"><![CDATA[Re: yup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66372#p66372"><![CDATA[
<blockquote class="uncited"><div>Hello<br>Yup when i type in channel !slap Blah it answers in DCC<br>Tcl error [kiss]: can't read kissprcc<br>Something like This<br>Regards</div></blockquote>That looks like you made a typo, in "kissproc"  and have "kissprcc"<br><br>Check over your code carefully, and paste the exact errors if necessary. Guessing won't help fix things <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=7395">rosc2112</a> — Sun Sep 17, 2006 6:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-17T03:09:40-04:00</updated>

		<published>2006-09-17T03:09:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66364#p66364</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66364#p66364"/>
		<title type="html"><![CDATA[yup]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66364#p66364"><![CDATA[
Hello<br><br>Yup when i type in channel !slap Blah it answers in DCC<br><br>Tcl error [kiss]: can't read kissprcc<br><br>Something like This<br>Regards<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Sun Sep 17, 2006 3:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2006-09-14T02:30:25-04:00</updated>

		<published>2006-09-14T02:30:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66324#p66324</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66324#p66324"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66324#p66324"><![CDATA[
It should make no difference, if you say "it doesn't work" atleast give us the errormessage too.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Thu Sep 14, 2006 2:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-13T13:17:51-04:00</updated>

		<published>2006-09-13T13:17:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66309#p66309</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66309#p66309"/>
		<title type="html"><![CDATA[ammm]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66309#p66309"><![CDATA[
Thanks for reply but i have done all in one TCL but it dose not work.<br>may i Put New tcl for Each for Exp<br><br>Spal.tcl<br>hugs.tcl<br>kik.tcl<br>kiss.tcl<br><br>i hope you understand ?<br>Regards<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Wed Sep 13, 2006 1:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2006-09-13T09:40:54-04:00</updated>

		<published>2006-09-13T09:40:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66305#p66305</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66305#p66305"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66305#p66305"><![CDATA[
you just need to change a few parts for each action.<br><br>for example.<div class="codebox"><p>Code: </p><pre><code>bind pub - !hugs hugsprocproc hugsproc {nick uhost hand chan text} {     set text [split $text]     if {$text == ""} {            puthelp "PRIVMSG $chan :Hug who? Or did you want me to hug YOU, $nick?"     } elseif {[onchan $text $chan]} {            puthelp "PRIVMSG $chan :\001ACTION hugs $text \001"     } else {            puthelp "PRIVMSG $chan :No one here by that name!"     }} </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Wed Sep 13, 2006 9:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-13T05:36:55-04:00</updated>

		<published>2006-09-13T05:36:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66300#p66300</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66300#p66300"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66300#p66300"><![CDATA[
<blockquote class="uncited"><div>A very basic template you can duplicate for making those kinds of actions:<div class="codebox"><p>Code: </p><pre><code>bind pub - !slap slapprocproc slapproc {nick uhost hand chan text} {     set text [split $text]     if {$text == ""} {            puthelp "PRIVMSG $chan :Slap who? Or did you want me to slap YOU, $nick?"     } elseif {[onchan $text $chan]} {            puthelp "PRIVMSG $chan :\001ACTION slaps $text \001"     } else {            puthelp "PRIVMSG $chan :No one here by that name!"     }}</code></pre></div>Should work, didn't test.</div></blockquote><br><br>This word really good <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> but i need Same !hugs !kik !kiss !love !hate !push  etc etc tell me a Exp: i will make Others my self <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">)) Thanks rosc2112<br>ReGards<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Wed Sep 13, 2006 5:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2006-09-12T15:13:52-04:00</updated>

		<published>2006-09-12T15:13:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66288#p66288</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66288#p66288"/>
		<title type="html"><![CDATA[Help with a Small Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66288#p66288"><![CDATA[
A very basic template you can duplicate for making those kinds of actions:<div class="codebox"><p>Code: </p><pre><code>bind pub - !slap slapprocproc slapproc {nick uhost hand chan text} {     set text [split $text]     if {$text == ""} {            puthelp "PRIVMSG $chan :Slap who? Or did you want me to slap YOU, $nick?"     } elseif {[onchan $text $chan]} {            puthelp "PRIVMSG $chan :\001ACTION slaps $text \001"     } else {            puthelp "PRIVMSG $chan :No one here by that name!"     }}</code></pre></div>Should work, didn't test.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Tue Sep 12, 2006 3:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Thanhas]]></name></author>
		<updated>2006-09-12T06:58:22-04:00</updated>

		<published>2006-09-12T06:58:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=66269#p66269</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=66269#p66269"/>
		<title type="html"><![CDATA[help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=66269#p66269"><![CDATA[
--------------------------------------- <br>&amp; one thing else if you can please Give me a Small TCL which work by anyone on those Segments <br>!Slaps *demond* The BOT Shuold Slap him <br>!Winks *demond* <br>!Hugs *demond* <br>many more i wana add my self just tell me with all details Thanks for beging Kind.... <br>Regards. <br>----------------------------------------- <br><br><br>can u find me This or make me A Simple one please<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8161">Thanhas</a> — Tue Sep 12, 2006 6:58 am</p><hr />
]]></content>
	</entry>
	</feed>
