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

	<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>2020-03-25T12:52:47-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Fire-Fox]]></name></author>
		<updated>2020-03-25T12:52:47-04:00</updated>

		<published>2020-03-25T12:52:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108104#p108104</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108104#p108104"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108104#p108104"><![CDATA[
Hello,<br><br>Hope its allright. I made some modifications to the script <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>credits are preserved <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>And made the output danish, so just change it to your needs <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>Output:<br><a href="https://ibb.co/ChVV2Qc" class="postlink"><img src="https://i.ibb.co/gzttVJ2/tvmaze.png" class="postimage" alt="Image"></a><br><div class="codebox"><p>Code: </p><pre><code>##############################[ TVmaze.com Eggdrop Script ]#######################                                                                               #variable tvmazeversion 1.25#                                                                               ## Author   : x0x a.k.a. ericNL (freenode + EFnet)                               ## Source   : http://forum.egghelp.org/viewtopic.php?t=20045                     ##            Latest version of this script always in the 1st post of the topic! ##                                                                               ## Activate : Party line command: .chanset #channel +tvmaze                      ## Commands : !tv or !t &lt;show&gt;    !last or !l &lt;show&gt;    !next or !n &lt;show&gt;       ##                                                                               ## Credits  : GaveUp, dlx, Znuff, speechles, nrt, Chokladkakan                   ##            Viper (Jan Milants), thommey, GPenguin                             ##                                                                               ## Greets   : Everyone over at http://forum.egghelp.org                          ##            The freenode #eggdrop crowd                                        ##            My friends in #&lt;translate-shark-to-dutch&gt; on EFnet ;)              ##                                                                               ##                                                                               ## Changelog  : Made it so it shows danish time and date output                  ##              We read date a little different :)                               ##                                                                               ################################################################################### We'll be needing these to run the script.package require httppackage require json# Don't forget to activate the script by setting .chanset #channel +tvmazesetudef flag tvmaze# The channel triggers.bind pub - !tv tvbind pub - !last tvlastbind pub - !next tvnext# Handle the !tv and !t triggers.proc tv { nick host hand chan arg } {        # Basic warez scene formatting support.        # Translate 'The.Big.Bang.Theory.S09E01.720p.HDTV.X264-DIMENSION' to 'The Big Bang Theory' so that TVmaze understands your query.        regsub -nocase -all {(\.| )([[:digit:]]{4}(\.| )|)(S[[:digit:]]{2}E[[:digit:]]{2}(\.| )|)(INTERNAL|INT|1080p|720p|HDTV|x264|WEBRip|REPACK|REAL|PROPER)(\.| ).*} $arg "" arg        regsub -all "\\." $arg " " arg        # This is where we contact TVmaze.        set url "http://api.tvmaze.com/singlesearch/shows?[::http::formatQuery q $arg embed\[\] nextepisode embed\[\] previousepisode]"        set timeout "5000"        if {[catch { ::http::geturl $url -timeout $timeout } token]} {        putquick "privmsg $chan :$nick, there was a fatal error :$token."        return 0        }        if {![string equal -nocase [::http::status $token] "ok"] || ![string equal [::http::ncode $token] 200]} {        putquick "privmsg $chan :\0034Fejl i din søgning, brug !tv &lt;navn&gt;\003"        http::cleanup $token        return 0        }        # Translate the TVmaze JSON data to Tcl dict which makes it possible for us to display the requested info in the IRC channel(s).        set tvmaze [::json::json2dict [::http::data $token]]        ::http::cleanup $token        dict with tvmaze {        # Set the network name.        # Is the show you're looking for available on Amazon/Netflix etc. or a network like ABC/HBO/Showtime etc.?        if {[string equal "null" $webChannel]} { set network [dict get $tvmaze network name] } else { set network [dict get $tvmaze webChannel name] }        # If there is any info on a next episode, make sure we can use that info later on.        if { [dict exists $tvmaze _embedded nextepisode url] } { set nextepurl [dict get $tvmaze _embedded nextepisode url] }        if { [dict exists $tvmaze _embedded nextepisode name] } { set nextepname [dict get $tvmaze _embedded nextepisode name] }        if { [dict exists $tvmaze _embedded nextepisode season] } { set nextepseason [dict get $tvmaze _embedded nextepisode season] }        if { [dict exists $tvmaze _embedded nextepisode number] } { set nextepnumber [dict get $tvmaze _embedded nextepisode number] }        if { [dict exists $tvmaze _embedded nextepisode airdate] } { set nextepairdate [dict get $tvmaze _embedded nextepisode airdate] }        if { [dict exists $tvmaze _embedded nextepisode airtime] } { set nextepairtime [dict get $tvmaze _embedded nextepisode airtime] }        if { [dict exists $tvmaze _embedded nextepisode runtime] } { set nextepruntime [dict get $tvmaze _embedded nextepisode runtime] }        if { [dict exists $tvmaze _embedded nextepisode summary] } { set nextepsummary [dict get $tvmaze _embedded nextepisode summary] }        # Same as above but now for the last/previous episode.        if { [dict exists $tvmaze _embedded previousepisode url] } { set prevepurl [dict get $tvmaze _embedded previousepisode url] }        if { [dict exists $tvmaze _embedded previousepisode name] } { set prevepname [dict get $tvmaze _embedded previousepisode name] }        if { [dict exists $tvmaze _embedded previousepisode season] } { set prevepseason [dict get $tvmaze _embedded previousepisode season] }        if { [dict exists $tvmaze _embedded previousepisode number] } { set prevepnumber [dict get $tvmaze _embedded previousepisode number] }        if { [dict exists $tvmaze _embedded previousepisode airdate] } { set prevepairdate [dict get $tvmaze _embedded previousepisode airdate] }        if { [dict exists $tvmaze _embedded previousepisode airtime] } { set prevepairtime [dict get $tvmaze _embedded previousepisode airtime] }        if { [dict exists $tvmaze _embedded previousepisode runtime] } { set prevepruntime [dict get $tvmaze _embedded previousepisode runtime] }        if { [dict exists $tvmaze _embedded previousepisode summary] } { set prevepsummary [dict get $tvmaze _embedded previousepisode summary] }        # Set the airtime (if exists) and reformat the 24-hour clock data supplied by TVmaze to a 12-hour clock format.        # Changed it to output the time and date, danish fasion way         if { [dict exists $tvmaze _embedded nextepisode airstamp] } {        set airstamp [clock scan [dict get $tvmaze _embedded nextepisode airstamp] -format {%Y-%m-%dT%H:%M:%S%z}]        set airstampnyc [clock format $airstamp -format {%d-%m-%Y kl: %H:%M} -timezone :America/New_York]        }        if { [dict exists $tvmaze _embedded previousepisode airstamp] } {        set airstamp [clock scan [dict get $tvmaze _embedded previousepisode airstamp] -format {%Y-%m-%dT%H:%M:%S%z}]        set prevepairdate [clock format $airstamp -format {%d-%m-%Y} -timezone :America/New_York]        }            set premiere [clock scan $premiered -format {%Y-%m-%d}]        set premiered [clock format $premiere -format {%d-%m-%Y}]        if { ![info exists name] } {                putquick "privmsg $chan :\0034Prøv at søg på en anden måde!\003"                return 0        }        # Add a leading 0 if the season number is 1-9. Do the same for episode numbers 1-9. This formats S1E1 to S01E01 to match warez scene formatting.        if { [info exists prevepseason] } { set prevepseason [format S%02d\0034X\003 $prevepseason] }        if { [info exists prevepnumber] } { set prevepnumber [format E%02d $prevepnumber] }        if { [info exists nextepseason] } { set nextepseason [format S%02d\0034X\003 $nextepseason] }        if { [info exists nextepnumber] } { set nextepnumber [format E%02d $nextepnumber] }        if { [info exists nextepname] &amp;&amp; [info exists prevepname] &amp;&amp; ![llength $genres] == 1 } {                putquick "privmsg $chan :Title:\002\0034 $name\002\003 \u2022 Network: $network"                putquick "privmsg $chan :Premiere: $premiered \u2022 Status: $status \u2022 URL: $url"                putquick "privmsg $chan :Tidligere episode: $prevepseason$prevepnumber Startede: $prevepairdate \u2022 Næste episode: $nextepseason$nextepnumber Starter: $airstampnyc"                return 0                }        if { [info exists nextepname] &amp;&amp; [info exists prevepname] } {                putquick "privmsg $chan :Title:\002\0034 $name\002\003 \u2022 Network: $network \u2022 Genre: $genres"                putquick "privmsg $chan :Premiere: $premiered \u2022 Status: $status \u2022 URL: $url"                putquick "privmsg $chan :Tidligere episode: $prevepseason$prevepnumber Startede: $prevepairdate \u2022 Næste episode: $nextepseason$nextepnumber Starter: $airstampnyc"                return 0                }        if { ![info exists nextepname] &amp;&amp; [info exists prevepname] &amp;&amp; ![llength $genres] == 1 } {                putquick "privmsg $chan :Title:\002\0034 $name\002\003 \u2022 Network: $network"                putquick "privmsg $chan :Premiere: $premiered \u2022 Status: $status \u2022 URL: $url"                putquick "privmsg $chan :Last: $prevepseason$prevepnumber startede: $prevepairdate"                return 0        }        if { ![info exists nextepname] &amp;&amp; [info exists prevepname] } {                putquick "privmsg $chan :Title:\002\0034 $name\002\003 \u2022 Network: $network \u2022 Genre: $genres"                putquick "privmsg $chan :Premiere: $premiered \u2022 Status: $status \u2022 URL: $url"                putquick "privmsg $chan :Last: $prevepseason$prevepnumber startede: $prevepairdate"                return 0                }        if { [info exists nextepname] &amp;&amp; ![info exists prevepname] &amp;&amp; ![llength $genres] == 1 } {                putquick "privmsg $chan :Show:\002\0034 $name\002\003 \u2022 Network: $network"                putquick "privmsg $chan :Premiere: $premiered \u2022 Status: $status \u2022 URL: $url"                putquick "privmsg $chan :Næste episode: $nextepseason$nextepnumber Starter: $airstampnyc"                return 0                }        if { [info exists nextepname] &amp;&amp; ![info exists prevepname] } {                putquick "privmsg $chan :Title:\002\0034 $name\002\003 \u2022 Network: $network \u2022 Genre: $genres"                putquick "privmsg $chan :Premiere: $premiered \u2022 Status: $status \u2022 URL: $url"                putquick "privmsg $chan :Næste episode: $nextepseason$nextepnumber Starter: $airstampnyc"                return 0                }        if { ![info exists nextepname] &amp;&amp; ![info exists previousepname] &amp;&amp; ![llength $genres] == 1 } {                putquick "privmsg $chan :Title: \002\0034$name\002\003 \u2022 Network: $network"                putquick "privmsg $chan :Status: $status \u2022 URL: $url"                return 0                }        if { ![info exists nextepname] &amp;&amp; ![info exists previousepname] } {                putquick "privmsg $chan :Title: \002$name\002 \u2022 Network: $network \u2022 Genre: $genres"                putquick "privmsg $chan :Status: $status \u2022 URL: $url"                return 0                }        }}# Handle the !next and !n triggers.proc tvnext { nick host hand chan arg } {        set url "http://api.tvmaze.com/singlesearch/shows?[::http::formatQuery q $arg embed\[\] nextepisode embed\[\] previousepisode]"        set timeout "5000"        if {[catch { ::http::geturl $url -timeout $timeout } token]} {        putquick "privmsg $chan :$nick, there was a fatal error :$token."        return 0        }        if {![string equal -nocase [::http::status $token] "ok"] || ![string equal [::http::ncode $token] 200]} {        putquick "privmsg $chan :\0034Fejl i din søgning, brug !next &lt;navn&gt;\003"        http::cleanup $token        return 0        }        set tvmaze [::json::json2dict [::http::data $token]]        ::http::cleanup $token        dict with tvmaze {        if {[string equal "null" $webChannel]} { set network [dict get $tvmaze network name] } else { set network [dict get $tvmaze webChannel name] }        if { [dict exists $tvmaze _embedded nextepisode url] } { set nextepurl [dict get $tvmaze _embedded nextepisode url] }        if { [dict exists $tvmaze _embedded nextepisode name] } { set nextepname [dict get $tvmaze _embedded nextepisode name] }        if { [dict exists $tvmaze _embedded nextepisode season] } { set nextepseason [dict get $tvmaze _embedded nextepisode season] }        if { [dict exists $tvmaze _embedded nextepisode number] } { set nextepnumber [dict get $tvmaze _embedded nextepisode number] }        if { [dict exists $tvmaze _embedded nextepisode airdate] } { set nextepairdate [dict get $tvmaze _embedded nextepisode airdate] }        if { [dict exists $tvmaze _embedded nextepisode airtime] } { set nextepairtime [dict get $tvmaze _embedded nextepisode airtime] }        if { [dict exists $tvmaze _embedded nextepisode runtime] } { set nextepruntime [dict get $tvmaze _embedded nextepisode runtime] }        if { [dict exists $tvmaze _embedded nextepisode summary] } { set nextepsummary [dict get $tvmaze _embedded nextepisode summary] }        if { [dict exists $tvmaze _embedded nextepisode airstamp] } {        set airstamp [clock scan [dict get $tvmaze _embedded nextepisode airstamp] -format {%Y-%m-%dT%H:%M:%S%z}]        set airstampnyc [clock format $airstamp -format {%d-%m-%Y kl: %H:%M} -timezone :America/New_York]        }        if { ![info exists nextepname] } {                putquick "privmsg $chan :\0034Fandt ingen info om næste episode.\003"                        return 0                }                set nextepseason [format S%02d\0034X\003 $nextepseason]                set nextepnumber [format E%02d $nextepnumber]        putquick "privmsg $chan :Title:\002\0034 $name\002\003 \u2022 Næste episode: $nextepseason$nextepnumber \"$nextepname\" Starter: $airstampnyc"        }}# Handle the !last and !l triggers.proc tvlast { nick host hand chan arg } {        set url "http://api.tvmaze.com/singlesearch/shows?[::http::formatQuery q $arg embed\[\] nextepisode embed\[\] previousepisode]"        set timeout "5000"        if {[catch { ::http::geturl $url -timeout $timeout } token]} {        putquick "privmsg $chan :$nick, there was a fatal error :$token."        return 0        }        if {![string equal -nocase [::http::status $token] "ok"] || ![string equal [::http::ncode $token] 200]} {        putquick "privmsg $chan :\0034Fejl i din søgning, brug !last &lt;navn&gt;\003"        http::cleanup $token        return 0        }        set tvmaze [::json::json2dict [::http::data $token]]        ::http::cleanup $token        dict with tvmaze {        if {[string equal "null" $webChannel]} { set network [dict get $tvmaze network name] } else { set network [dict get $tvmaze webChannel name] }        if { [dict exists $tvmaze _embedded previousepisode url] } { set prevepurl [dict get $tvmaze _embedded previousepisode url] }        if { [dict exists $tvmaze _embedded previousepisode name] } { set prevepname [dict get $tvmaze _embedded previousepisode name] }        if { [dict exists $tvmaze _embedded previousepisode season] } { set prevepseason [dict get $tvmaze _embedded previousepisode season] }        if { [dict exists $tvmaze _embedded previousepisode number] } { set prevepnumber [dict get $tvmaze _embedded previousepisode number] }        if { [dict exists $tvmaze _embedded previousepisode airdate] } { set prevepairdate [dict get $tvmaze _embedded previousepisode airdate] }        if { [dict exists $tvmaze _embedded previousepisode airtime] } { set prevepairtime [dict get $tvmaze _embedded previousepisode airtime] }        if { [dict exists $tvmaze _embedded previousepisode runtime] } { set prevepruntime [dict get $tvmaze _embedded previousepisode runtime] }        if { [dict exists $tvmaze _embedded previousepisode summary] } { set prevepsummary [dict get $tvmaze _embedded previousepisode summary] }        if { [dict exists $tvmaze _embedded previousepisode airstamp] } {        set airstamp [clock scan [dict get $tvmaze _embedded previousepisode airstamp] -format {%Y-%m-%dT%H:%M:%S%z}]        set prevepairdate [clock format $airstamp -format {%d-%m-%Y kl: %H:%M} -timezone :America/New_York]        }                if { ![info exists prevepname] } {                putquick "privmsg $chan :\0034Fandt ingen info om sidste episode.\003"                        return 0                }                set prevepseason [format S%02d\0034X\003 $prevepseason]                set prevepnumber [format E%02d $prevepnumber]                putquick "privmsg $chan :Title:\0034\002 $name\002\003 \u2022 Sidste episode: $prevepseason$prevepnumber \"$prevepname\" Startede: $prevepairdate"        }}putlog "TVmaze.com Eggdrop Script by x0x/ericNL version $tvmazeversion loaded! - Modded By: Fire-Fox"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8230">Fire-Fox</a> — Wed Mar 25, 2020 12:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[wuseman]]></name></author>
		<updated>2019-11-24T20:22:49-04:00</updated>

		<published>2019-11-24T20:22:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=107949#p107949</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=107949#p107949"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=107949#p107949"><![CDATA[
Works great, thanks alot for this script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12836">wuseman</a> — Sun Nov 24, 2019 8:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[fr0g]]></name></author>
		<updated>2017-04-29T16:21:03-04:00</updated>

		<published>2017-04-29T16:21:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106223#p106223</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106223#p106223"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106223#p106223"><![CDATA[
<blockquote class="uncited"><div>*snip*</div></blockquote>this is exactly what I was missing! gunna mod it to allow specifying date. thank you!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12692">fr0g</a> — Sat Apr 29, 2017 4:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Get_A_Fix]]></name></author>
		<updated>2017-03-05T15:07:14-04:00</updated>

		<published>2017-03-05T15:07:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=105853#p105853</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=105853#p105853"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=105853#p105853"><![CDATA[
<blockquote class="uncited"><div>is it possible to add some coloring , or showing us how to do it ?</div></blockquote>Did you search the forums? You can find basic colour/control code syntax <a href="http://forum.egghelp.org/viewtopic.php?p=104917" class="postlink">here</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6204">Get_A_Fix</a> — Sun Mar 05, 2017 3:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Votex]]></name></author>
		<updated>2017-03-05T14:21:53-04:00</updated>

		<published>2017-03-05T14:21:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=105852#p105852</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=105852#p105852"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=105852#p105852"><![CDATA[
Having problem running it with 1.8.0 version <br>getting this error <br> can't find package json<br>    while executing<br>"package require json"<br>    (file "scripts/tvmaze.tcl" line 29)<br>    invoked from within<br>"source scripts/tvmaze.tcl"<br>    (file "eggdrop.conf" line 1387)<br><br><strong class="text-strong"><span style="color:red">Fixed with json.tcl  </span></strong><br>------------------------<br><br>is it possible to add some coloring , or showing us how to do it ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12408">Votex</a> — Sun Mar 05, 2017 2:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[x0x]]></name></author>
		<updated>2017-02-08T16:15:07-04:00</updated>

		<published>2017-02-08T16:15:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=105804#p105804</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=105804#p105804"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=105804#p105804"><![CDATA[
I'd appreciate any help optimizing the script <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10486">x0x</a> — Wed Feb 08, 2017 4:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[t00]]></name></author>
		<updated>2016-03-08T13:25:57-04:00</updated>

		<published>2016-03-08T13:25:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104790#p104790</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104790#p104790"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104790#p104790"><![CDATA[
its possible that the regex wrong is?<br><br>from script :<br>regsub -nocase -all {(\.| )([[:digit:]]{4}(\.| )|)(S[[:digit:]]{2}E[[:digit:]]{2}(\.| )|)(INTERNAL|INT|1080p|720p|HDTV|x264|WEBRip|REPACK|REAL|PROPER)(\.| ).*} $arg "" arg<br><br><br>when i this annouce its results from varibale arg Outrageous.Acts.of.Science.S01E01.Face.Palm.720p.HDTV.x264-DHD :<br><br>Outrageous Acts of Science S01E01 Face Palm<br><br>the script find nothing when S01E01 Face Palm is<br><br><br>&lt;testbot&gt; !tv Outrageous.Acts.of.Science.S01E01.Face.Palm.720p.HDTV.x264-DHD<br>&lt;testbot1&gt; testbot, there was an http error: ( 404 ) ok 12·<br>&lt;testbot&gt; !tv Outrageous Acts of Science<br>&lt;testbot1&gt; Show: Outrageous Acts of Science • Network: Science • Genre: Comedy 12·<br>&lt;testbo1t&gt; Premiered: 2013-04-20 • Status: Running • URL: <a href="http://www.tvmaze.com/shows/2649/outrageous-acts-of-science" class="postlink">http://www.tvmaze.com/shows/2649/outrag ... of-science</a> 12·<br> &lt;testbot1&gt; Previous: S05E09 aired 2016-03-05 • Next: S05E10 airs 2016-03-12 at 09:00 PM EST 12·<br><br><br>who can check the regex?<br><br>Regards<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12399">t00</a> — Tue Mar 08, 2016 1:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Faithunter]]></name></author>
		<updated>2016-02-20T17:21:44-04:00</updated>

		<published>2016-02-20T17:21:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104724#p104724</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104724#p104724"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104724#p104724"><![CDATA[
SOrry for my poor english already.<br><br>I m using a script who help to transfer TV with tvrage information since tvrage is down my script don t work i have try to adapt it for tvmaze.com but that don t work.<br><br>Can u help me to made it ? I put for u tvrage.com script here<br><br><a href="http://pastebin.com/d0Xn5hD8" class="postlink">http://pastebin.com/d0Xn5hD8</a><br><br>Hope some want help and i can be recognize <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=12606">Faithunter</a> — Sat Feb 20, 2016 5:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Froggaard]]></name></author>
		<updated>2016-01-07T00:11:32-04:00</updated>

		<published>2016-01-07T00:11:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104620#p104620</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104620#p104620"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104620#p104620"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div><blockquote class="uncited"><div>It is possible to make <strong class="text-strong">airs in XX days</strong><br>Eg.<br>[05:09:37] &lt;+TV&gt; Show: The Blacklist :: Next episode: S03E06 - Sir Crispin Crandall airs 2015-11-05 (1 day - 22 Hours) :: <a href="http://www.tvmaze.com/shows/69/the-blacklist" class="postlink">http://www.tvmaze.com/shows/69/the-blacklist</a></div></blockquote>I have made my own change in the script.. All credits to x0x <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><strong class="text-strong"><a href="http://pastebin.com/KB0H0nVt" class="postlink">http://pastebin.com/KB0H0nVt</a></strong><blockquote class="uncited"><div>[05:05:12] &lt;~Froggaard&gt; !n blacklist<br>[05:05:16] &lt;&amp;Bermuda&gt; Show: The Blacklist :: Next episode: S03E09 - The Director (1) airs 2016-01-07 (In: 4 weeks 6 days 18 hours 54 minutes 45 seconds) :: <a href="http://www.tvmaze.com/shows/69/the-blacklist" class="postlink">http://www.tvmaze.com/shows/69/the-blacklist</a></div></blockquote>Not pretty, but it works <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>Here you can see all your code with your mistakes. <br><a href="http://paste.tclhelp.net/?id=hgc" class="postlink">http://paste.tclhelp.net/?id=hgc</a></div></blockquote>Well, if there are any mistakes, in the script, it is not mine.<br>I have copied the entire script from x0x and just pasted three lines.<br><br>And when i tried to use your script, i got this error<blockquote class="uncited"><div>Tcl error [tvnext]: invalid command name "<a href="http://api.tvmaze.com/singlesearch/shows?q=blacklist&amp;embed%5B%5D=nextepisode&amp;embed%5B%5D=previousepisode&amp;quot" class="postlink">http://api.tvmaze.com/singlesearch/show ... isode&amp;quot</a>"</div></blockquote>So with, or without errors, i use the script there works.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12566">Froggaard</a> — Thu Jan 07, 2016 12:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Get_A_Fix]]></name></author>
		<updated>2016-01-04T06:23:36-04:00</updated>

		<published>2016-01-04T06:23:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104617#p104617</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104617#p104617"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104617#p104617"><![CDATA[
I had thought about maybe using this script, until I saw that post, Arkadietz.<br><br>I generally run my scripts through a processor, like paste.tclhelp.net, to find errors or bits that may cause the bot to choke. Over the year's it has helped me make better scripts, using the proper method instead of using shortcuts or shortargs. <br><br>This is a pretty big script, so fixing all of the issues may be tedious but necessary. I hope this will make the script and process even better.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6204">Get_A_Fix</a> — Mon Jan 04, 2016 6:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Arkadietz]]></name></author>
		<updated>2016-01-03T17:26:52-04:00</updated>

		<published>2016-01-03T17:26:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104615#p104615</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104615#p104615"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104615#p104615"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>It is possible to make <strong class="text-strong">airs in XX days</strong><br>Eg.<br>[05:09:37] &lt;+TV&gt; Show: The Blacklist :: Next episode: S03E06 - Sir Crispin Crandall airs 2015-11-05 (1 day - 22 Hours) :: <a href="http://www.tvmaze.com/shows/69/the-blacklist" class="postlink">http://www.tvmaze.com/shows/69/the-blacklist</a></div></blockquote>I have made my own change in the script.. All credits to x0x <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><strong class="text-strong"><a href="http://pastebin.com/KB0H0nVt" class="postlink">http://pastebin.com/KB0H0nVt</a></strong><blockquote class="uncited"><div>[05:05:12] &lt;~Froggaard&gt; !n blacklist<br>[05:05:16] &lt;&amp;Bermuda&gt; Show: The Blacklist :: Next episode: S03E09 - The Director (1) airs 2016-01-07 (In: 4 weeks 6 days 18 hours 54 minutes 45 seconds) :: <a href="http://www.tvmaze.com/shows/69/the-blacklist" class="postlink">http://www.tvmaze.com/shows/69/the-blacklist</a></div></blockquote>Not pretty, but it works <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>Here you can see all your code with your mistakes. <br><a href="http://paste.tclhelp.net/?id=hgc" class="postlink">http://paste.tclhelp.net/?id=hgc</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7974">Arkadietz</a> — Sun Jan 03, 2016 5:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Elfriede]]></name></author>
		<updated>2016-01-02T12:09:51-04:00</updated>

		<published>2016-01-02T12:09:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104613#p104613</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104613#p104613"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104613#p104613"><![CDATA[
Thanks for the script!<br><br>Anyway im getting this timezone error on latest version: ( doesnt happen on all series )<br><br>!tv colony<br>Tcl error [tv]: time zone ":America/New_York" not found<br><br>What can i do to fix this error ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9204">Elfriede</a> — Sat Jan 02, 2016 12:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Froggaard]]></name></author>
		<updated>2015-12-15T00:12:47-04:00</updated>

		<published>2015-12-15T00:12:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104599#p104599</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104599#p104599"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104599#p104599"><![CDATA[
I just took<blockquote class="uncited"><div>                                set show_date_time [chng_time [clock scan "$nextepairdate"]]<br>                                set sec [clock seconds]<br>                                set airing "[duration [expr {$show_date_time - $sec}]]"</div></blockquote>from the TVrage script..<br>Sorry if this dosen't work, for you.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12566">Froggaard</a> — Tue Dec 15, 2015 12:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Votex]]></name></author>
		<updated>2015-12-03T06:02:09-04:00</updated>

		<published>2015-12-03T06:02:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104579#p104579</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104579#p104579"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104579#p104579"><![CDATA[
got this:<blockquote class="uncited"><div>[11:00:26] Tcl error [tvnext]: invalid command name "chng_time"<br>[11:00:41] Tcl error [tvnext]: invalid command name "chng_time"<br>[11:00:58] Tcl error [tvnext]: invalid command name "chng_time"<br>[11:01:19] Tcl error [tvnext]: invalid command name "chng_time"<br>[11:01:39] Tcl error [tvnext]: invalid command name "chng_time"</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12408">Votex</a> — Thu Dec 03, 2015 6:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Froggaard]]></name></author>
		<updated>2015-12-03T00:09:15-04:00</updated>

		<published>2015-12-03T00:09:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104578#p104578</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104578#p104578"/>
		<title type="html"><![CDATA[TVmaze.com Eggdrop Script (Version 1.25 / 2015-10-03)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104578#p104578"><![CDATA[
<blockquote class="uncited"><div>It is possible to make <strong class="text-strong">airs in XX days</strong><br>Eg.<br>[05:09:37] &lt;+TV&gt; Show: The Blacklist :: Next episode: S03E06 - Sir Crispin Crandall airs 2015-11-05 (1 day - 22 Hours) :: <a href="http://www.tvmaze.com/shows/69/the-blacklist" class="postlink">http://www.tvmaze.com/shows/69/the-blacklist</a></div></blockquote>I have made my own change in the script.. All credits to x0x <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><strong class="text-strong"><a href="http://pastebin.com/KB0H0nVt" class="postlink">http://pastebin.com/KB0H0nVt</a></strong><blockquote class="uncited"><div>[05:05:12] &lt;~Froggaard&gt; !n blacklist<br>[05:05:16] &lt;&amp;Bermuda&gt; Show: The Blacklist :: Next episode: S03E09 - The Director (1) airs 2016-01-07 (In: 4 weeks 6 days 18 hours 54 minutes 45 seconds) :: <a href="http://www.tvmaze.com/shows/69/the-blacklist" class="postlink">http://www.tvmaze.com/shows/69/the-blacklist</a></div></blockquote>Not pretty, but it works <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=12566">Froggaard</a> — Thu Dec 03, 2015 12:09 am</p><hr />
]]></content>
	</entry>
	</feed>
