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

	<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-08-08T00:23:49-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2006-08-08T00:23:49-04:00</updated>

		<published>2006-08-08T00:23:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65259#p65259</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65259#p65259"/>
		<title type="html"><![CDATA[Problem With amiens game Faq script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65259#p65259"><![CDATA[
It is apparent this script is no longer supported. One might be lucky in that another will take over the script and update it as it is apparent Papillon no longer works on it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Aug 08, 2006 12:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[fkfmf]]></name></author>
		<updated>2006-08-07T23:04:43-04:00</updated>

		<published>2006-08-07T23:04:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=65256#p65256</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=65256#p65256"/>
		<title type="html"><![CDATA[not working.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=65256#p65256"><![CDATA[
i tried this source code but still only showing UPCOMING GC GAMES.<br>can someone PLEASE update this script.it was a handy scripts for finding release dates for consoles.<br>btw i tried to contact Amiens via email and messenger and no reply with a status on a working update or if there is going to be a new one in the future.<br>THANKS for your help.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7842">fkfmf</a> — Mon Aug 07, 2006 11:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2004-11-19T09:52:14-04:00</updated>

		<published>2004-11-19T09:52:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42884#p42884</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42884#p42884"/>
		<title type="html"><![CDATA[Problem With amiens game Faq script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42884#p42884"><![CDATA[
I had a similar problem with this script... I found a fix, although I think they changed their site again and happened to stuble upon your post.  Well here's a fix so that you at least you see the releases, but its not perfect:<br><blockquote class="uncited"><div>###############################<br>#### gamefaq tcl script v1.00  by Amien ####<br>################################<br><br><br># !games &lt;console&gt;<br>#<br># will show upcoming games with retail date<br># source is <a href="http://www.gamefaqs.com/" class="postlink">http://www.gamefaqs.com/</a><br>#<br># If you find any bug, please bug me at <a href="mailto:amien@fusemail.com">amien@fusemail.com</a><br># respect to all the people from TCL , PHP and SQL channels on efnet<br># for answering all my n00b questions so fast<br>#<br># not the finest lines of tcl but it all works<br># feel free to modify, but please send me your scripts or updates<br><br>bind pub A !upcoming games<br><br>proc games {nick host handle chan arg}  {<br>    global system <br><br>## parameter settings ##<br><br>    set arg [string toupper $arg]<br>    if {$arg != "PC" &amp;&amp; $arg != "GC" &amp;&amp; $arg != "PS2" &amp;&amp; $arg != "XBOX" &amp;&amp; $arg != "GBA"} {  <br>            puthelp "notice $nick :Missing argument, type !games SECTION, available sections are: GBA GC PC PS2 XBOX"<br>            return 0<br>            }<br>    puthelp "privmsg $chan :UPCOMING $arg GAMES"<br><br>    if {$arg == "PC"} { set urlgames "<a href="http://www.gamefaqs.com/computer/doswin/" class="postlink">http://www.gamefaqs.com/computer/doswin/</a>" }<br>    if {$arg == "GC"} { set urlgames "<a href="http://www.gamefaqs.com/console/gamecube/" class="postlink">http://www.gamefaqs.com/console/gamecube/</a>" }<br>    if {$arg == "PS2"} { set urlgames "<a href="http://www.gamefaqs.com/console/ps2/" class="postlink">http://www.gamefaqs.com/console/ps2/</a>" }<br>    if {$arg == "XBOX"} { set urlgames "<a href="http://www.gamefaqs.com/console/xbox/" class="postlink">http://www.gamefaqs.com/console/xbox/</a>" }<br>    if {$arg == "GBA"} { set urlgames "<a href="http://www.gamefaqs.com/portable/gbadvance/" class="postlink">http://www.gamefaqs.com/portable/gbadvance/</a>" }<br>    <br><br>## read  http page ##<br><br>package forget http<br>package require http 2.3<br>set conn [::http::geturl $urlgames -timeout 9999]<br>set data [::http::data $conn]<br>::http::cleanup $conn<br><br>## lets strip! ##<br><br>set tosave [string range $data [set f [string first "&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign=\"top\" class=\"date\"&gt;" $data]] [string first "&lt;th colspan=\"2\" valign=\"top\" class=\"listhead\"&gt;" $data $f]]<br>regsub -all -- {&lt;br&gt;} $tosave "\n" tosave<br>regsub -all -- {&lt;/b&gt;|&lt;/font&gt;} $tosave { } tosave <br>regsub -all -- {&lt;[^&gt;]*&gt;} $tosave {} tosave <br>regsub -all -- { |[&lt;*&gt;]} $tosave { } tosave<br><br>foreach line [split $tosave "\n"] {<br>if {$line == {} || $line == { }} { continue }<br>if {[string is digit [string index $line 0]]} {<br>set dateline [string map {"/" "-"} [string range $line 0 3]]<br>set gameline [string range $line 4 end]<br>} else { set gameline $line }<br>puthelp "privmsg $chan :($dateline) $gameline."<br>}<br> }<br><br>putlog "Amiens GAMESFAQS Script (heavily modified by Papillon)"</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Fri Nov 19, 2004 9:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-05-22T16:33:37-04:00</updated>

		<published>2004-05-22T16:33:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36533#p36533</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36533#p36533"/>
		<title type="html"><![CDATA[Problem With amiens game Faq script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36533#p36533"><![CDATA[
Hi, im not sure if anyone can help with this but my problem is in my chan i have this setup Amiens GAMESFAQS Script V1.0, it basicaly shows all the upcoming releases for a given Category Eg if you wanted to see the latest PC games in the channel you would type !Games PC. Past a certain point it used to give me the full details now its just does this : <br><br>UPCOMING PC GAMES // US RETAiL!<br> () .<br>Im thinking something has changed on the Gamefaq.com website but because i have no experince in TCl scripting iam unsure on how to resolve the issue. Iam hoping one of you maybe be able to help ? i absloutly appreciate any help you can give me and thanks very <br><br>pete<p>Statistics: Posted by Guest — Sat May 22, 2004 4:33 pm</p><hr />
]]></content>
	</entry>
	</feed>
