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

	<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>2013-01-23T19:47:31-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Get_A_Fix]]></name></author>
		<updated>2013-01-23T19:47:31-04:00</updated>

		<published>2013-01-23T19:47:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100737#p100737</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100737#p100737"/>
		<title type="html"><![CDATA[Need Random Messages Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100737#p100737"><![CDATA[
You can also use setchaninfo and +greet, which are both internal/core eggdrop commands. It would be much easier than adding a script just to greet a single user.<br><br>There is a script for infoline <a href="http://www.hawkee.com/snippet/7934/" class="postlink">here</a> with commands explained.<br><br>For the script to be like you asked, where it triggers ONLY when your BOT joins, then use something similar to what was posted above.<br><div class="codebox"><p>Code: </p><pre><code>bind join - * pub:joinproc pub:join {nick uhost hand chan} {   global botnick   if {($chan == "#psycho") &amp;&amp; ([isbotnick $nick])} {      puthelp "PRIVMSG $chan :Welcome $botnick to $chan Channel."      puthelp "PRIVMSG $chan :\0034$botnick is Back\003!!"   } else { puthelp "PRIVMSG $chan :Welcome $nick to $chan Channel."    } }</code></pre></div>You can even make it so you can turn this on|off, using <strong class="text-strong">.chanset #channel +botgreet</strong><br><div class="codebox"><p>Code: </p><pre><code>bind join - * pub:joinsetudef flag botgreetproc pub:join {nick uhost hand chan} {   global botnick   if {![channel get $chan botgreet]} {return}   if {($chan == "#psycho") &amp;&amp; ([isbotnick $nick])} {      puthelp "PRIVMSG $chan :Welcome $botnick to $chan Channel."      puthelp "PRIVMSG $chan :\0034$botnick is Back\003!!"   } else { puthelp "PRIVMSG $chan :Welcome $nick to $chan Channel."    } }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6204">Get_A_Fix</a> — Wed Jan 23, 2013 7:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Madalin]]></name></author>
		<updated>2013-01-23T08:52:07-04:00</updated>

		<published>2013-01-23T08:52:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100733#p100733</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100733#p100733"/>
		<title type="html"><![CDATA[Need Random Messages Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100733#p100733"><![CDATA[
NOTE: This is an eggdrop/help forum not a mirc bot one. The script i wrote is for eggdrop only and will not work on mIRC (its not a .mrc its a .tcl)<br><br>We can convert .mrc to .tcl but tcl scripts cannot be loaded to mirc clients<br><div class="codebox"><p>Code: </p><pre><code>bind join - * pub:joinproc pub:join {nick uhost hand chan} {if {$nick == "Pyscho"} {putserv "PRIVMSG $chan :\00304$nick\003 is Back"} else {putserv "PRIVMSG $chan :Welcome $nick to $chan Channel"}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6396">Madalin</a> — Wed Jan 23, 2013 8:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ninja_Boy]]></name></author>
		<updated>2013-01-23T08:44:41-04:00</updated>

		<published>2013-01-23T08:44:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100732#p100732</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100732#p100732"/>
		<title type="html"><![CDATA[Need Random Messages Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100732#p100732"><![CDATA[
thx but can u help me in this code pls?<br><br>i want like if my bot join any channel text come as "Pyscho is Back!!" And if any other player join Channel then text come as "Welcome $nick to $chan Channe.l" <br><br>but when bot my join channel both text come like this<br><br>&lt;Psycho&gt;Welcome Psycho to #psycho Channel.<br>&lt;Psycho&gt;Psycho is Back!!!<br><div class="codebox"><p>Code: </p><pre><code>on *:join:#: {   if($nick == Pyscho) msg $chan 4Pyscho is Back}on *:join:#: {  msg $chan Welcome $nick to $chan Channel.}</code></pre></div>and how to use .tcl files for mIRC bot?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12180">Ninja_Boy</a> — Wed Jan 23, 2013 8:44 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2013-01-23T04:09:55-04:00</updated>

		<published>2013-01-23T04:09:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100730#p100730</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100730#p100730"/>
		<title type="html"><![CDATA[Need Random Messages Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100730#p100730"><![CDATA[
Look around here first....<br><br><a href="http://www.egghelp.org/tclhtml/3478-4-0-0-1-advertise.htm" class="postlink">http://www.egghelp.org/tclhtml/3478-4-0 ... ertise.htm</a><br><br>or maybe this forum string...<br><br><a href="http://forum.egghelp.org/viewtopic.php?t=19179" class="postlink">http://forum.egghelp.org/viewtopic.php?t=19179</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Wed Jan 23, 2013 4:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ninja_Boy]]></name></author>
		<updated>2013-01-23T03:49:22-04:00</updated>

		<published>2013-01-23T03:49:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100729#p100729</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100729#p100729"/>
		<title type="html"><![CDATA[Need Random Messages Script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100729#p100729"><![CDATA[
Hello Everyone<br><br>can anyone please make a small random message script for me? cuz i am not better mIRC Bot Scripter. i am learning mIRC Bot script.<br><br>i want bot script like Bot will talk automatically after 2-3 minutes<br><br>like this <br><div class="codebox"><p>Code: </p><pre><code>&lt;mIRC Bot&gt; HelloAfter 3 minutes&lt;mIRC Bot&gt; i am crazy</code></pre></div>this is possible?<br><br>thx in Advance  <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=12180">Ninja_Boy</a> — Wed Jan 23, 2013 3:49 am</p><hr />
]]></content>
	</entry>
	</feed>
