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

	<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-02-08T13:27:10-04:00</updated>

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

		<entry>
		<author><name><![CDATA[doubleu]]></name></author>
		<updated>2013-02-08T13:27:10-04:00</updated>

		<published>2013-02-08T13:27:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100922#p100922</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100922#p100922"/>
		<title type="html"><![CDATA[Re: working code]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100922#p100922"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>####################################################### Xbox Live GamerTag Status' by Danneh/GrimReaper #########################################################                 Initial Setup                   ####################################################### set xblchar "." #######################################################                    End Setup                    ####################################################### proc xblinfo {nick host hand chan search} {  if {[lsearch -exact [channel info $chan] +xblinfo] != -1} {    set xbllogo "\0039X\00314box Live\003"    set xblsite "Live.xbox.com"    set xblstatusfound "0"    if {$search == ""} {      putserv "PRIVMSG $chan :$xbllogo, Please enter a GamerTag to search for.."    } else {      set xblsrcurl1 [urlencode [regsub -all { } $search +]]      set xblsrcurl2 [encurl $search]      set xblsrcurl3 "/en-GB/Profile?gamertag=${xblsrcurl2}"      if {[catch {set xblsrcsock [socket -async $xblsite 80]} sockerr]} {        return 0      } else {        puts $xblsrcsock "GET $xblsrcurl3 HTTP/1.0"        puts $xblsrcsock "Host: $xblsite"        puts $xblsrcsock "User-Agent: Opera 9.6"        puts $xblsrcsock ""        flush $xblsrcsock        while {![eof $xblsrcsock]} {          set xblstatus "[gets $xblsrcsock]"          if {$xblstatusfound == "on"} {            putserv "PRIVMSG $chan :$xbllogo status for \0037$search\003: [xblstrip [string trimleft [recode "${xblstatus}"]]]"            close $xblsrcsock            return 0          }          if {[regexp -all {&lt;div class="custom"&gt;} $xblstatus]} {            set xblstatusfound "on"          }        } putserv "PRIVMSG $chan :Sorry, I couldn't find \0037$search\003 on $xbllogo"        close $xblsrcsock        return 0      }    }  }}proc xblgsinfo {nick host hand chan search} {  if {[lsearch -exact [channel info $chan] +xblinfo] != -1} {    set xbllogo "\0039X\00314box Live\003"    set xblsite "Live.xbox.com"    if {$search == ""} {      putserv "PRIVMSG $chan :$xbllogo, Please enter a GamerTag to search GamerScore for.."    } else {      set xblsrcurl1 [urlencode [regsub -all { } $search +]]      set xblsrcurl2 [encurl $search]      set xblsrcurl3 "/en-GB/Profile?gamertag=${xblsrcurl2}"      if {[catch {set xblsrcsock [socket -async $xblsite 80]} sockerr]} {        return 0      } else {        puts $xblsrcsock "GET $xblsrcurl3 HTTP/1.0"        puts $xblsrcsock "Host: $xblsite"        puts $xblsrcsock "User-Agent: Opera 9.6"        puts $xblsrcsock ""        flush $xblsrcsock        while {![eof $xblsrcsock]} {          set xblstatus "[gets $xblsrcsock]"          if {[regexp -all {&lt;div class="gamerscore"&gt;(.*?)&lt;/div&gt;} $xblstatus match xblgamerscore]} {            putserv "PRIVMSG $chan :$xbllogo GamerScore for \0037$search\003: $xblgamerscore"     close $xblsrcsock     return 0          }        } putserv "PRIVMSG $chan :Sorry, I couldn't find \0037$search\003 on $xbllogo"        close $xblsrcsock        return 0      }    }  }} proc encurl {string} {  return [string map {" " %20} "$string"]}proc xblstrip {string} {  return [regsub -all {&lt;[^&lt;&gt;]+&gt;} $string ""]} proc urlencode {string} {  return [subst [regsub -nocase -all {([^a-z0-9+])} $string {%[format %x [scan "\\&amp;" %c]]}]]}proc recode { textin } {  return [string map {" " · · &amp; &amp;} [subst [regsub -nocase -all {&amp;#([0-9]{1,5});} $textin {\u\1}]]]}bind pub - ${xblchar}xbl xblinfobind pub - ${xblchar}xblgs xblgsinfosetudef flag xblinfoputlog "Xbox Live Gamertag status' by Danneh/GrimReaper"</code></pre></div>use telnet and set <div class="codebox"><p>Code: </p><pre><code> .chanset #chanelname +xblinfo</code></pre></div>usage :<br><br>.xbl gamertag<br>.xblgs gamertag</div></blockquote>I think this isn't working anymore.  No matter what gamertag I choose, it always responds with Sorry, I couldn't find &lt;gamertag&gt; on Xbox Live<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9703">doubleu</a> — Fri Feb 08, 2013 1:27 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[bAN01TgAZ]]></name></author>
		<updated>2012-09-30T13:08:33-04:00</updated>

		<published>2012-09-30T13:08:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100093#p100093</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100093#p100093"/>
		<title type="html"><![CDATA[working code]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100093#p100093"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>####################################################### Xbox Live GamerTag Status' by Danneh/GrimReaper #########################################################                 Initial Setup                   ####################################################### set xblchar "." #######################################################                    End Setup                    ####################################################### proc xblinfo {nick host hand chan search} {  if {[lsearch -exact [channel info $chan] +xblinfo] != -1} {    set xbllogo "\0039X\00314box Live\003"    set xblsite "Live.xbox.com"    set xblstatusfound "0"    if {$search == ""} {      putserv "PRIVMSG $chan :$xbllogo, Please enter a GamerTag to search for.."    } else {      set xblsrcurl1 [urlencode [regsub -all { } $search +]]      set xblsrcurl2 [encurl $search]      set xblsrcurl3 "/en-GB/Profile?gamertag=${xblsrcurl2}"      if {[catch {set xblsrcsock [socket -async $xblsite 80]} sockerr]} {        return 0      } else {        puts $xblsrcsock "GET $xblsrcurl3 HTTP/1.0"        puts $xblsrcsock "Host: $xblsite"        puts $xblsrcsock "User-Agent: Opera 9.6"        puts $xblsrcsock ""        flush $xblsrcsock        while {![eof $xblsrcsock]} {          set xblstatus "[gets $xblsrcsock]"          if {$xblstatusfound == "on"} {            putserv "PRIVMSG $chan :$xbllogo status for \0037$search\003: [xblstrip [string trimleft [recode "${xblstatus}"]]]"            close $xblsrcsock            return 0          }          if {[regexp -all {&lt;div class="custom"&gt;} $xblstatus]} {            set xblstatusfound "on"          }        } putserv "PRIVMSG $chan :Sorry, I couldn't find \0037$search\003 on $xbllogo"        close $xblsrcsock        return 0      }    }  }}proc xblgsinfo {nick host hand chan search} {  if {[lsearch -exact [channel info $chan] +xblinfo] != -1} {    set xbllogo "\0039X\00314box Live\003"    set xblsite "Live.xbox.com"    if {$search == ""} {      putserv "PRIVMSG $chan :$xbllogo, Please enter a GamerTag to search GamerScore for.."    } else {      set xblsrcurl1 [urlencode [regsub -all { } $search +]]      set xblsrcurl2 [encurl $search]      set xblsrcurl3 "/en-GB/Profile?gamertag=${xblsrcurl2}"      if {[catch {set xblsrcsock [socket -async $xblsite 80]} sockerr]} {        return 0      } else {        puts $xblsrcsock "GET $xblsrcurl3 HTTP/1.0"        puts $xblsrcsock "Host: $xblsite"        puts $xblsrcsock "User-Agent: Opera 9.6"        puts $xblsrcsock ""        flush $xblsrcsock        while {![eof $xblsrcsock]} {          set xblstatus "[gets $xblsrcsock]"          if {[regexp -all {&lt;div class="gamerscore"&gt;(.*?)&lt;/div&gt;} $xblstatus match xblgamerscore]} {            putserv "PRIVMSG $chan :$xbllogo GamerScore for \0037$search\003: $xblgamerscore"     close $xblsrcsock     return 0          }        } putserv "PRIVMSG $chan :Sorry, I couldn't find \0037$search\003 on $xbllogo"        close $xblsrcsock        return 0      }    }  }} proc encurl {string} {  return [string map {" " %20} "$string"]}proc xblstrip {string} {  return [regsub -all {&lt;[^&lt;&gt;]+&gt;} $string ""]} proc urlencode {string} {  return [subst [regsub -nocase -all {([^a-z0-9+])} $string {%[format %x [scan "\\&amp;" %c]]}]]}proc recode { textin } {  return [string map {" \" · · &amp; &amp;} [subst [regsub -nocase -all {&amp;#([0-9]{1,5});} $textin {\u\1}]]]}bind pub - ${xblchar}xbl xblinfobind pub - ${xblchar}xblgs xblgsinfosetudef flag xblinfoputlog "Xbox Live Gamertag status' by Danneh/GrimReaper"</code></pre></div>use telnet and set <div class="codebox"><p>Code: </p><pre><code> .chanset #chanelname +xblinfo</code></pre></div>usage :<br><br>.xbl gamertag<br>.xblgs gamertag<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12087">bAN01TgAZ</a> — Sun Sep 30, 2012 1:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stefftastiq]]></name></author>
		<updated>2011-12-05T06:46:09-04:00</updated>

		<published>2011-12-05T06:46:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=98319#p98319</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=98319#p98319"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=98319#p98319"><![CDATA[
anyone know of any alternative scripts? which works? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_neutral.gif" width="15" height="15" alt=":|" title="Neutral"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11208">stefftastiq</a> — Mon Dec 05, 2011 6:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pogue]]></name></author>
		<updated>2011-03-01T03:53:16-04:00</updated>

		<published>2011-03-01T03:53:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=96263#p96263</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=96263#p96263"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=96263#p96263"><![CDATA[
Mygamercard has bit the dust, so this script is now null and void.<br><br><a href="http://www.mygamercard.net/" class="postlink">http://www.mygamercard.net/</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10663">pogue</a> — Tue Mar 01, 2011 3:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pogue]]></name></author>
		<updated>2010-03-12T22:13:57-04:00</updated>

		<published>2010-03-12T22:13:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=92473#p92473</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=92473#p92473"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=92473#p92473"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div><blockquote class="uncited"><div>If you see that cookies are used, then this should stop the site from eventually abolishing your ip to hell. Hopefully... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>get the new script here:<a href="http://ereader.kiczek.com/incith-gamertag.tcl" class="postlink"><strong class="text-strong">Incith Gamertag v1.3</strong></a> .. have a fun ;P</div></blockquote>Thanks very much speechles!  Looks like they have my bots IP totally blocked now though, unfortunately, so I guess I'm stuck.  Still appreciated.</div></blockquote>Will add proxy support as well. But for most proxies, cookie traffic usually isn't carried over. But this should allow you to get the script "working" again.</div></blockquote>Any update on the proxy support speechles? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Thanks,<br>pogue<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10663">pogue</a> — Fri Mar 12, 2010 10:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2010-01-26T07:11:19-04:00</updated>

		<published>2010-01-26T07:11:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91856#p91856</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91856#p91856"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91856#p91856"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>If you see that cookies are used, then this should stop the site from eventually abolishing your ip to hell. Hopefully... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>get the new script here:<a href="http://ereader.kiczek.com/incith-gamertag.tcl" class="postlink"><strong class="text-strong">Incith Gamertag v1.3</strong></a> .. have a fun ;P</div></blockquote>Thanks very much speechles!  Looks like they have my bots IP totally blocked now though, unfortunately, so I guess I'm stuck.  Still appreciated.</div></blockquote>Will add proxy support as well. But for most proxies, cookie traffic usually isn't carried over. But this should allow you to get the script "working" again.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Tue Jan 26, 2010 7:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pogue]]></name></author>
		<updated>2010-01-25T21:44:25-04:00</updated>

		<published>2010-01-25T21:44:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91851#p91851</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91851#p91851"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91851#p91851"><![CDATA[
<blockquote class="uncited"><div>If you see that cookies are used, then this should stop the site from eventually abolishing your ip to hell. Hopefully... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>get the new script here:<a href="http://ereader.kiczek.com/incith-gamertag.tcl" class="postlink"><strong class="text-strong">Incith Gamertag v1.3</strong></a> .. have a fun ;P</div></blockquote>Thanks very much speechles!  Looks like they have my bots IP totally blocked now though, unfortunately, so I guess I'm stuck.  Still appreciated.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10663">pogue</a> — Mon Jan 25, 2010 9:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2010-01-24T15:48:30-04:00</updated>

		<published>2010-01-24T15:48:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91818#p91818</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91818#p91818"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91818#p91818"><![CDATA[
This is because they intially give you a phpsessid to follow for future reference and the script wasn't keeping track of cookie traffic. But now, since the admins of mygamercard seem to be such well..f****** a******* then let's make it totally look like the script is a browser and support phpsessid cookies. This is now functional and available.<br><blockquote class="uncited"><div>&lt;speechles&gt; !gt decoy0cto<br>&lt;sp33chy&gt; <strong class="text-strong">MyGamerTag</strong> for Decoy0cto "AHHH OPEN UR MOOOUUTH" | Games: 81 | Score: 15900/65170 (24.39%) | Achievements: 792/2979 (26.58%) | Status: Last Playing Halo 3--Offline for 2 Days | Reputation: 5.00 | GamerScore: 29065 (We are missing game data totaling 13165 GamerScore. This can be corrected by simply booting games not shown in this list.) | LastLive: Halo 3 on Fri, 22 Jan 2010 05:47:55 GMT @<br>&lt;sp33chy&gt; <a href="http://profile.mygamercard.net/Decoy0cto" class="postlink">http://profile.mygamercard.net/Decoy0cto</a> [cookies used]</div></blockquote>If you see that cookies are used, then this should stop the site from eventually abolishing your ip to hell. Hopefully... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>get the new script here:<a href="http://ereader.kiczek.com/incith-gamertag.tcl" class="postlink"><strong class="text-strong">Incith Gamertag v1.3</strong></a> .. have a fun ;P<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sun Jan 24, 2010 3:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pogue]]></name></author>
		<updated>2010-01-17T20:36:48-04:00</updated>

		<published>2010-01-17T20:36:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91717#p91717</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91717#p91717"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91717#p91717"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>Any ideas on why I keep getting <br>20:40 &lt; tsunade&gt; The connection has timed out...<br> <br><br>everytime someone tries to use the script it fails now, any ideas or updates on this script?</div></blockquote>MyGamerTag dislikes this script for some reason. In fact several users have sent me messages they received from MyGamerTag when asking why their IP was banned/blacklisted. The message made it pretty clear they know about this script. They asked the fellow if he knew of a scripting language called tcl which ran on eggdrop bots for irc. Pretty clear to me they must mean this script <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br><br>I guess the fact that it doesn't allow a user to click banners/advertising, nor does it attempt to download the images they use for banners/advertising causes them to get a little pissed off. They are now throttling requests and over-use will now lead to a blackhole (basically they blacklist your ip for 24 hours). Happens to me when using only a browser (firefox in this case) as well. Eventually they stop replying and the page will timeout. I'll try to investigate it deeper and find a more suitable user-agent string or pass some headers along too to keep this at bay. But for the meantime, there is really nothing wrong with the script. It's a problem with the webmaster/admins of MyGamerTag and their policies towards bots/automated scripts (they abhor them)..</div></blockquote>This has begun happening to me too.  I changed the flood settings to allow for more lookups faster and now it appears my IP has been blocked.  Before that, I had no problem.<br><br>A couple things I can think of that may help.  The most obvious would be to have proxy support.  I also noticed (or couldn't find) that the script emulates a browser and sends any sort of user agent (ua) back to the server.  Possibly doing that and having a random ua sent for each gamertag query might confuse them a bit.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10663">pogue</a> — Sun Jan 17, 2010 8:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2009-08-21T16:09:28-04:00</updated>

		<published>2009-08-21T16:09:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=90014#p90014</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=90014#p90014"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=90014#p90014"><![CDATA[
<blockquote class="uncited"><div>Any ideas on why I keep getting <br>20:40 &lt; tsunade&gt; The connection has timed out...<br> <br><br>everytime someone tries to use the script it fails now, any ideas or updates on this script?</div></blockquote>MyGamerTag dislikes this script for some reason. In fact several users have sent me messages they received from MyGamerTag when asking why their IP was banned/blacklisted. The message made it pretty clear they know about this script. They asked the fellow if he knew of a scripting language called tcl which ran on eggdrop bots for irc. Pretty clear to me they must mean this script <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br><br>I guess the fact that it doesn't allow a user to click banners/advertising, nor does it attempt to download the images they use for banners/advertising causes them to get a little pissed off. They are now throttling requests and over-use will now lead to a blackhole (basically they blacklist your ip for 24 hours). Happens to me when using only a browser (firefox in this case) as well. Eventually they stop replying and the page will timeout. I'll try to investigate it deeper and find a more suitable user-agent string or pass some headers along too to keep this at bay. But for the meantime, there is really nothing wrong with the script. It's a problem with the webmaster/admins of MyGamerTag and their policies towards bots/automated scripts (they abhor them)..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Fri Aug 21, 2009 4:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tehsu]]></name></author>
		<updated>2009-08-20T21:45:49-04:00</updated>

		<published>2009-08-20T21:45:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=90003#p90003</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=90003#p90003"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=90003#p90003"><![CDATA[
Any ideas on why I keep getting <br>20:40 &lt; tsunade&gt; The connection has timed out...<br> <br><br>everytime someone tries to use the script it fails now, any ideas or updates on this script?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10827">tehsu</a> — Thu Aug 20, 2009 9:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2007-11-15T23:47:11-04:00</updated>

		<published>2007-11-15T23:47:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=78429#p78429</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=78429#p78429"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=78429#p78429"><![CDATA[
<blockquote class="uncited"><div>Woo go me!  Releasing scripts without even tryin'!<br><br>Nice work, doesn't offend me at all.  Brought a smile. =)  Thanks for the kind words speechles..</div></blockquote>Indeed, its neccessary to give props to the code that gave me inspiration. Helping others using comments in your code so they learn from your examples is excellent.  In keeping with that tradition, I've got another update to this script to bring it closer to perfection.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>To get the newest version of this script please see the 1st post in this thread, it contains all the history and revisions that have been made.<br><br><br>@incith, your wonderful google script constantly amazes me. Thanks so much for allowing me (and others since its GNU) to modify your script. It's allowed me to create something I think is truly unique in the eggdrop world.  A multi-purpose, multi-language, super google bot <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Thu Nov 15, 2007 11:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[incith]]></name></author>
		<updated>2007-10-17T16:11:57-04:00</updated>

		<published>2007-10-17T16:11:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76826#p76826</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76826#p76826"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76826#p76826"><![CDATA[
Woo go me!  Releasing scripts without even tryin'!<br><br>Nice work, doesn't offend me at all.  Brought a smile. =)  Thanks for the kind words speechles..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6130">incith</a> — Wed Oct 17, 2007 4:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[schizosmurf]]></name></author>
		<updated>2007-10-12T17:49:34-04:00</updated>

		<published>2007-10-12T17:49:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76671#p76671</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76671#p76671"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76671#p76671"><![CDATA[
works perfect. i figured it would be an easy fix but wasn't exactly sure how to do it myself.<br>thanks  <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=9367">schizosmurf</a> — Fri Oct 12, 2007 5:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2007-10-12T17:31:22-04:00</updated>

		<published>2007-10-12T17:31:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76670#p76670</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76670#p76670"/>
		<title type="html"><![CDATA[incith:gamertag (v1.3) Jan 24, 2o1o]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76670#p76670"><![CDATA[
<blockquote class="uncited"><div>I noticed something while using this script.<br>if someone types just !gamertag with no argument it brings of the stats for some guy named morgon. <br>&lt;someguy&gt; !gamertag<br>&lt;somebot&gt; MyGamerTag for Morgon Games: 99 Score: 9608/44090 Achievements: 527/2044 Status: Last Seen on Xbox.com--Offline for 46 Secs Reputation: 5.00 GamerScore: 9608<br>&lt;somebot&gt; LastLive: Tetris Splash on Tue, 09 Oct 2007 22:39:58 GMT  <a href="http://profile.mygamercard.net/Morgon" class="postlink">http://profile.mygamercard.net/Morgon</a><br><br>I dont think it's the scripts fault bc going to <a href="http://profile.mygamercard.net" class="postlink">http://profile.mygamercard.net</a> (with no /gamertag on the end) shows that info.<br>So is there some way I/you could change it to check for an argument before attempting to retrieve information, so you end up with some thing like<br>&lt;someguy&gt; !gamertag<br>&lt;somebot&gt; Please enter a search query. Ex. !gamertag bobsmith</div></blockquote><div class="codebox"><p>Code: </p><pre><code># If the user omits the tag, let's yell at them...if {$input == ""} { return "No tag specified, search terminated. Please supply a gamertag." }# fetch the htmlset html [fetch_html $input]</code></pre></div>Feel free to edit the code to match the reply you find acceptable. To avoid editing, you can get the fixed script <a href="http://ereader.kiczek.com/incith-gamertag.tcl" class="postlink">here</a>. Most important, have a fun  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Fri Oct 12, 2007 5:31 pm</p><hr />
]]></content>
	</entry>
	</feed>
