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

	<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>2021-07-14T03:42:06-04:00</updated>

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

		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-07-14T03:42:06-04:00</updated>

		<published>2021-07-14T03:42:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110104#p110104</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110104#p110104"/>
		<title type="html"><![CDATA[CTCP VERSION]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110104#p110104"><![CDATA[
Can't see what you're talking about  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"> (thanks edit <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">)<br><br>I must stop paste&amp;copy starts of my proc from really old scripts I made <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=691">CrazyCat</a> — Wed Jul 14, 2021 3:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2021-07-14T03:03:16-04:00</updated>

		<published>2021-07-14T03:03:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110103#p110103</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110103#p110103"/>
		<title type="html"><![CDATA[CTCP VERSION]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110103#p110103"><![CDATA[
Please change:<div class="codebox"><p>Code: </p><pre><code>if {[string tolower $nick] eq [string tolower $::botnick]} { return 0 } </code></pre></div>to:<div class="codebox"><p>Code: </p><pre><code>if {[isbotnick $nick]} return</code></pre></div>cos bothers my OCD. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Wed Jul 14, 2021 3:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ORATEGOD]]></name></author>
		<updated>2021-07-13T20:53:32-04:00</updated>

		<published>2021-07-13T20:53:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110101#p110101</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110101#p110101"/>
		<title type="html"><![CDATA[CTCP VERSION]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110101#p110101"><![CDATA[
works <strong class="text-strong">100</strong>% ... as always I appreciate all the help they offer to all users.<br><br>(excuse my bad English)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12869">ORATEGOD</a> — Tue Jul 13, 2021 8:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-07-14T03:40:26-04:00</updated>

		<published>2021-07-13T06:24:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110098#p110098</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110098#p110098"/>
		<title type="html"><![CDATA[CTCP VERSION]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110098#p110098"><![CDATA[
Few hours after <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Here is a short code, it actually works on join channel, I let you adapt the way you want to have it working.<br><div class="codebox"><p>Code: </p><pre><code>namespace eval vwarn {   dict set minver mirc {min 7.55 msg "Please update to mIRC 7.55" }   dict set minver weechat {min 3.1 msg "New version 4.0 is better"}   bind join - * ::vwarn::join   proc join {nick uhost handle chan} {      if {[isbotnick $nick]} { return 0 }      putserv "PRIVMSG $nick :\001VERSION\001"   }   bind ctcr - VERSION ::vwarn::check   proc check {nick uhost handle dest kw arg} {      foreach soft [dict keys $::vwarn::minver] {         if {[string match "*${soft}*" [string tolower $arg]]} {            regexp {(\d{1,}\.?\d{1,})} $arg - vnum            if {[package vcompare $vnum [dict get $::vwarn::minver $soft min]]==-1} {               putserv "PRIVMSG $nick :[dict get $::vwarn::minver $soft msg]"            }         }      }   }}</code></pre></div>The important thing is the lines begining with <strong class="text-strong">dict set minver</strong>, which allows you to add client (in my case mirc and weechat), the minimal version (7.55 and 3.1) and the associated message.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Tue Jul 13, 2021 6:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2021-07-13T02:53:38-04:00</updated>

		<published>2021-07-13T02:53:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110097#p110097</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110097#p110097"/>
		<title type="html"><![CDATA[CTCP VERSION]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110097#p110097"><![CDATA[
Yes it can. The difficulty is to determine how to set versions and check them.<br><br>I think it's possible with a kind of dataset containing clients, minimal version and message to send.<br>I'll try to look about that in the day.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Tue Jul 13, 2021 2:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ORATEGOD]]></name></author>
		<updated>2021-07-12T19:40:35-04:00</updated>

		<published>2021-07-12T19:40:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110094#p110094</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110094#p110094"/>
		<title type="html"><![CDATA[CTCP VERSION]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110094#p110094"><![CDATA[
Greetings Guys entering a server a few days ago and I found this message from an eggdrop.<br><br>The question is can this TCL be replicated?<br><br>[19:25] &lt;Data&gt; <strong class="text-strong"><span style="color:red">Your IRC Client is susceptible to hacks!</span></strong> Upgrade or get a new client. See <a href="https://www.exploit-db.com/exploits/46392" class="postlink">https://www.exploit-db.com/exploits/46392</a> Upgrade to 7.55+ @ <a href="http://www.mirc.com" class="postlink">www.mirc.com</a> or !Search mirc in #Chat<br><br><br><br><strong class="text-strong">THANK YOU IN ADVANCE FOR YOUR RESPONSES</strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12869">ORATEGOD</a> — Mon Jul 12, 2021 7:40 pm</p><hr />
]]></content>
	</entry>
	</feed>
