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

	<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>2015-06-11T15:45:45-04:00</updated>

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

		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2015-06-11T15:45:45-04:00</updated>

		<published>2015-06-11T15:45:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104244#p104244</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104244#p104244"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104244#p104244"><![CDATA[
I found the script, I'm just going to paste it here just in case you guys are still interested in it. I did not test it, I hope it still works <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><div class="codebox"><p>Code: </p><pre><code>catch {package require http}namespace eval ::cricketarchive {################################################################################################variable author"iRoc &lt;apnihost@gmail.com&gt; (c)"variable version"1.1.1"variable date"08-Jul-2010"set time_up [clock clicks -milliseconds]variable optionsvariable feedsvariable token2feedsetudef str cricketarchive-default_langsetudef str cricketarchive-usecolors################################################################################################set options(debug)          2set options(msg_len)        400        set max_tcl_events          20        set select_timeout          100set options(fast)           0set options(default_lang)   {bn en}set options(usecolors)      1set options(check_time)     30000set options(url)            "http://www.cricketarchive.com/Archive/Scorecards/%s_commentary.html"set options(stop_no_output) 100################################################################################################proc compare_version {version1 version2} {set dec1 [split $version1 .]; set dec2 [split $version2 .]foreach a1 $dec1 a2 $dec2 {if {[string is space [set a1 [string trimleft $a1 0]]]} {set a1 0}if {[string is space [set a2 [string trimleft $a2 0]]]} {set a2 0}if {$a2 &gt; $a1} {return 1} elseif {$a2 &lt; $a1} {return 0}}return 0}if {[info procs lassign] == ""} {proc lassign {values args} {set vlen [llength $values]set alen [llength $args]for {set i $vlen} {$i &lt; $alen} {incr i} {lappend values {}}uplevel 1 [list foreach $args $values break]return [lrange $values $alen end]}}if {[info command lreverse] == ""} {proc lreverse l {set r {}set r {}set i [llength $l]while {[incr i -1]} {lappend r [lindex $l $i]}lappend r [lindex $l 0]}}proc ladd {varName el} {upvar $varName varif {![info exists var]} {set var {}}if {[ni $var $el]} {lappend var $elreturn 1}return 0}if {[compare_version [info pa] 8.5]} {proc in {list element} {expr [lsearch -exact $list $element] &gt;= 0}proc ni {list element} {expr [lsearch -exact $list $element] &lt; 0}} else {proc in {list element} {expr {$element in $list}}proc ni {list element} {expr {$element ni $list}}}################################################################################################proc debug {text {level 1}} {variable optionsif {$options(debug) &gt;= $level} {putlog "[namespace current]:: $text"}}proc Pop {varname {nth 0}} {upvar $varname argsset r [lindex $args $nth]set args [lreplace $args $nth $nth]return $r}proc get_options_int {param {chan ""}} {variable optionsif {[check_isnull $chan] || ![validchan $chan]} {if {[info exists options($param)] &amp;&amp; [string is digit $options($param)] &amp;&amp; $options($param) &gt;= 0} {return $options($param)}} else {set cset [channel get $chan cricketarchive-$param]if {![string is space $cset] &amp;&amp; [string is digit $cset] &amp;&amp; $cset &gt;= 0} {return $cset}if {[info exists options($param)] &amp;&amp; [string is digit $options($param)] &amp;&amp; $options($param) &gt;= 0} {return $options($param)}}return 0}proc importvars {lo} {foreach var $lo {set value [uplevel 2 "if {\[info exists $var\]} {set $var} else {set $var \"\"}"]uplevel [list set $var $value]}}proc check_isnull {str} {if {$str == "" || $str == "*"} {return 1} else {return 0}}################################################################################################proc put_msgdest {args} {variable optionsset opts(-type)  "privmsg";set opts(-speed) 2;if {[llength $args] &gt; 2} {while {[string match -* [lindex $args 0]]} {switch -glob -- [lindex $args 0] {-type  { set opts(-type)  [Pop args 1] }-speed { set opts(-speed) [Pop args 1] }-- { Pop args; break }default {set opt [join [lsort [array names opts -*]] ", "]return -code error "bad option [lindex $args 0]: must be $opt"}}Pop args}}if {[llength $args] != 2} {return -code error "wrong # args: should be \"put_msgdest ?switches? dest text\""}set dest [lindex $args 0]set text [lindex $args 1]set text [string map [list {\002} "\002" {\037} "\037" {\026} "\026" {\003} "\003" {\017} "\017"] $text]set list_out [list]if {[string length $text] &lt;= $options(msg_len)} {lappend list_out $text} else {set str_out ""set str_color ""set new 1set reg_color  {(\003\d{1,2}(?:,\d{1,2})?|\003|\037|\026|\017|\002|\d{1,2}(?:,\d{1,2})?|||||)}set reg_dcolor {|\037\037||\002\002||\026\026}set reg_ccolor {[\017](.*?)$}foreach _0 [split $text] {if {$new} {set _1 $_0; set new 0} else {set _1 " $_0"}if {[string length "$_0"] &gt; $options(msg_len)} {set str_tmp "$str_out$_1"while {[string length $str_tmp] &gt; $options(msg_len)} {set str_out [string range "$str_color$str_tmp" 0 [expr $options(msg_len)-1]]set str_tmp [string range "$str_color$str_tmp" $options(msg_len) end]lappend list_out "$str_color$str_out"foreach {block color} [regexp -all -inline -- $reg_color $str_out] {append str_color $color}while {[regexp -all -- $reg_ccolor $str_color -&gt; str_color]} {}regsub -all -- $reg_dcolor $str_color {} str_color}set str_out $str_tmp} elseif {[string length "$str_color$str_out$_1"] &gt; $options(msg_len)} {lappend list_out "$str_color$str_out"foreach {block color} [regexp -all -inline -- $reg_color $str_out] {append str_color $color}while {[regexp -all -- $reg_ccolor $str_color -&gt; str_color]} {}regsub -all -- $reg_dcolor $str_color {} str_colorset str_out $_0} else {append str_out $_1}}if {![string is space $str_out]} {lappend list_out "$str_color$str_out"}}if {$opts(-type) == "privmsg"} {set put_out "PRIVMSG [join $dest ","] :"} elseif {$opts(-type) == "notice"} {set put_out "NOTICE [join $dest ","] :"} elseif {$opts(-type) == "dcc" &amp;&amp; [valididx $dest]} {set put_out ""} else {return}foreach _ $list_out {set msg $put_out$_if {$opts(-type) == "dcc"} {putdcc $dest $msg} elseif {$options(fast) || $opts(-speed) == 0} {append msg "\n"putdccraw 0 [string length $msg] $msg} elseif {$opts(-speed) == 1} {putquick $msg} elseif {$opts(-speed) == 2} {putserv $msg} elseif {$opts(-speed) == 3} {puthelp $msg}}}proc get_text {args} {variable textvariable optionsset opts(-black) 0;set opts(-color) 0;set opts(-type)  "text";set opts(-hand)  "*";set opts(-chan)  "";set opts(-lang)  "";while {[string match -* [lindex $args 0]]} {switch -glob -- [lindex $args 0] {-black { set opts(-black) 1 }-color { set opts(-color) 1 }-type  { set opts(-type)  [Pop args 1] }-hand  { set opts(-hand)  [Pop args 1] }-chan  { set opts(-chan)  [Pop args 1] }-lang  { set opts(-lang)  [Pop args 1] }-- { Pop args; break }default {set opt [join [lsort [array names opts -*]] ", "]return -code error "bad option [lindex $args 0]: must be $opt"}}Pop args}if {$opts(-black) &amp;&amp; $opts(-color)} {return -code error "can't use \"-black -color\" at the same time together"} elseif {$opts(-black)} {set colors {black}} elseif {$opts(-color)} {set colors {color}} else {if {[get_options_int usecolors $opts(-chan)]} {set colors {color black}} else {set colors {black color}}}if {$opts(-lang) == ""} {set langs [list]if {![check_isnull $opts(-hand)]} {foreach _ [getuser $opts(-hand) XTRA cricketarchive-default_lang] {if {[string is space $_]} continueladd langs $_}}if {![check_isnull $opts(-chan)] &amp;&amp; [validchan $opts(-chan)]} {foreach _ [channel get $opts(-chan) cricketarchive-default_lang] {if {[string is space $_]} continueladd langs $_}}if {[info exists options(default_lang)]} {foreach _ $options(default_lang) {if {[string is space $_]} continueladd langs $_}}} else {set langs $opts(-lang)}switch -- $opts(-type) {args - help - help2 {if {[llength $args] != 1} {return -code error "wrong # args: should be \"get_text ?switches? command\""}foreach color $colors {foreach lang $langs {if {[info exists text($opts(-type),$color,$lang,[lindex $args 0])]} {return $text($opts(-type),$color,$lang,[lindex $args 0])}}}}default {if {[llength $args] != 2} {return -code error "wrong # args: should be \"get_text ?switches? name tag\""}foreach color $colors {foreach lang $langs {if {[info exists text($opts(-type),$color,$lang,[lindex $args 0],[lindex $args 1])]} {return $text($opts(-type),$color,$lang,[lindex $args 0],[lindex $args 1])}}}}}return "null"}proc set_text {args} {variable textset opts(-black) 0;set opts(-color) 0;set opts(-type)  "text";while {[string match -* [lindex $args 0]]} {switch -glob -- [lindex $args 0] {-black { set opts(-black) 1 }-color { set opts(-color) 1 }-type  { set opts(-type)  [Pop args 1] }-- { Pop args; break }default {set opt [join [lsort [array names opts -*]] ", "]return -code error "bad option [lindex $args 0]: must be $opt"}}Pop args}if {$opts(-black) &amp;&amp; $opts(-color)} {return -code error "can't use \"-black -color\" at the same time together"} elseif {$opts(-black)} {set color "black"} elseif {$opts(-color)} {set color "color"} else {set color "black"}switch -- $opts(-type) {args - help - help2 {if {[llength $args] != 3} {return -code error "wrong # args: should be \"set_text ?switches? lang command string\""}set text($opts(-type),$color,[lindex $args 0],[lindex $args 1]) [lindex $args 2]}default {if {[llength $args] != 4} {return -code error "wrong # args: should be \"set_text ?switches? lang name tag string\""}set text($opts(-type),$color,[lindex $args 0],[lindex $args 1],[lindex $args 2]) [lindex $args 3]}}return}proc sprintf {name text args} {if {[string index $text 0] == "#"} {importvars [list shand schan]if {![info exists schan]} {set schan "*"}set textlang [get_text -hand $shand -chan $schan -- $name $text]if {$textlang == "null"} {return "Module \002$name\002, text \002$text\002 not found. Args: [join $args ", "]"} else {set text $textlang}}set ind 0set first [string first "%s" $text]while {$first &gt;= 0} {set text [string replace $text $first [expr $first+1] [lindex $args $ind]]set first [string first "%s" $text [expr $first+[string length [lindex $args $ind]]]]incr ind}return $text}################################################################################################proc http_done {token} {variable optionsvariable feedsvariable token2feedif {[catch {set feed $token2feed($token)debug "http_done $feed" 2set errid  [::http::status $token]set errtxt [::http::error  $token]set ncode  [::http::ncode  $token]debug "http_done $feed ($errid) ($errtxt) ($ncode)" 2if { $errid == {ok} &amp;&amp; $ncode == 200} {upvar #0 $token stateset data $state(body)set data [encoding convertfrom iso8859-1 $data]#::ccs::SaveFile test.html $data#if {[regexp -- {&lt;div class=\"cf_uf_col3\" style=\"border:none\"&gt;(.*?)&lt;br /&gt;(.*?)&lt;/div&gt;} $data -&gt; a b]} {##set a [string trim [string map {{\n} {}} $a]]#set b [string trim [string map {{\n} {}} $b]]##if {$feeds($feed,header) != [list $a $b]} {#foreach chan $feeds($feed,chan) {#put_msgdest -- $chan [sprintf cricketarchive #109 $a $b]#}#set feeds($feed,header) [list $a $b]#}##}set ldata [regexp -all -inline -- {&lt;tr&gt;(.+?)&lt;/tr&gt;} $data]#set ldata [regexp -all -inline -- {&lt;div class=\"row([a-z]+?)\"&gt;.*&lt;strong&gt;(.+?)&lt;/strong&gt;.*?&lt;strong&gt;&lt;font .*?&gt;(.+?)&lt;/font&gt;&lt;/strong&gt;(.+?)&lt;/font&gt;.*?&lt;/div&gt;} $data]set temp_live {}foreach {-&gt; a} $ldata {if {[regexp -- {&lt;td .+?&gt;(\d+)&lt;/td&gt;&lt;td .+?&gt;([a-z0-9]+)&lt;/td&gt;&lt;td .+?&gt;([a-z0-9]+)&lt;/td&gt;&lt;td .+?&gt;(.+?)&lt;/td&gt;} $a -&gt; c1 c2 c3 c4]} {} elseif {[regexp -- {&lt;td width="100" colspan="3" valign="top"&gt;(.*?)&lt;/td&gt;&lt;td&gt;(.+?)&lt;/td&gt;} $a -&gt; c1 c2]} {set c3 ""set c4 ""} elseif {[regexp -- {&lt;td colspan="3" align="center"&gt;&lt;/td&gt;&lt;td&gt;&lt;a .+?&gt;(.+?)&lt;/a&gt; (.+?)&lt;/td&gt;} $a -&gt; c1 c2]} {set c3 ""set c4 ""} else {continue}regsub -all {&lt;.+?&gt;(.*?)&lt;/.+?&gt;} $c4 "\00312\\1\00304" c4regsub -all {&lt;br&gt;} $c4 { } c4if {[lsearch -exact $feeds($feed,live) [list $c1 $c2 $c3 $c4]] &lt; 0} {lappend feeds($feed,live) [list $c1 $c2 $c3 $c4]lappend temp_live [list $c1 $c2 $c3 $c4]}} if ($feeds($feed,start)) { set feeds($feed,start) 0 set l [lrange $temp_live end end] } else { set l $temp_live }foreach _ $l {lassign $_ c1 c2 c3 c4foreach chan $feeds($feed,chan) {if {$c3 == "" &amp;&amp; $c4 == ""} {put_msgdest -- $chan [sprintf cricketarchive #107 $c1 $c2]} else {put_msgdest -- $chan [sprintf cricketarchive #106 $c1 $c2 $c3 $c4]}}}if {[llength $temp_live] == 0} {incr feeds($feed,null)if {$feeds($feed,null) &gt;= $options(stop_no_output)} {foreach chan $feeds($feed,chan) {put_msgdest -- $chan [sprintf cricketarchive #108 $feed]}timer_stop $feed}} else {set feeds($feed,null) 0}}#set feeds($feed,token) ""::http::cleanup $tokenunset token2feed($token)} err]} {debug "http_done, error: $err"}}proc timer_check {feed} {variable optionsvariable feedsvariable token2feeddebug "timer_check $feed" 2timer_start $feed::http::config -urlencoding utf-8::http::config -useragent "Opera/9.10 (Windows NT 5.1; U; ru)"set url [string map [list %s "[string range $feed 0 2]/$feed/$feed"] $options(url)]debug "get url $url" 2set token [::http::geturl $url -command [namespace origin http_done] -binary true -timeout 20000]set feeds($feed,token) $tokenset token2feed($token) $feed}proc timer_start {feed} {variable optionsvariable feedsdebug "timer_start $feed" 2set feeds($feed,timer) [after $options(check_time) [list [namespace origin timer_check] $feed]]}proc timer_stop {feed} {variable feedsdebug "timer_stop $feed" 2after cancel $feeds($feed,timer)foreach _ [array names feeds "$feed,*"] { unset feeds($_) }}proc pub_startmatch {nick uhost hand chan text} {variable feedsif {![regexp -nocase -- {^(\d+)$} $text -&gt; feed]} {put_msgdest -type notice -- $nick [sprintf cricketarchive #101]return}if {[info exists feeds($feed,feed)]} {if {[in $feeds($feed,chan) $chan]} {put_msgdest -- $chan [sprintf cricketarchive #103 $feed]} else {lappend feeds($feed,chan) $chanput_msgdest -- $chan [sprintf cricketarchive #102 $feed]}} else {set feeds($feed,feed)   1set feeds($feed,chan)   [list $chan]set feeds($feed,timer)  0set feeds($feed,token)  ""set feeds($feed,header) {}set feeds($feed,live)   {}set feeds($feed,null)   0set feeds($feed,start)  1put_msgdest -- $chan [sprintf cricketarchive #102 $feed]timer_check $feed}debug "&lt;&lt;$nick ($hand)&gt;&gt; !$chan! start match, feed $feed"}proc pub_stopmatch {nick uhost hand chan text} {variable feedsif {![regexp -nocase -- {^(\d+)$} $text -&gt; feed]} {put_msgdest -type notice -- $nick [sprintf cricketarchive #101]return}if {[info exists feeds($feed,feed)]} {if {[in $feeds($feed,chan) $chan]} {set feeds($feed,chan) [lsearch -not -inline -all $feeds($feed,chan) $chan]if {[llength $feeds($feed,chan)] == 0} {timer_stop $feed}put_msgdest -- $chan [sprintf cricketarchive #104 $feed]} else {put_msgdest -- $chan [sprintf cricketarchive #105 $feed]}} else {put_msgdest -- $chan [sprintf cricketarchive #105 $feed]}debug "&lt;&lt;$nick ($hand)&gt;&gt; !$chan! stop match, feed $feed"}proc pub_infomatch {nick uhost hand chan text} {   set t [::http::geturl http://www.cricketarchive.com/]   set data [::http::data $t]   ::http::cleanup $t   set l [regexp -all -inline -- {&lt;tr&gt;&lt;td height="22"&gt;&lt;div align="center"&gt;&lt;a href="/Archive/Scorecards/.*?/.*?/(.*?)_mini.html"&gt;(.*?)&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;} $data]   foreach {black a b } $l {      set a [string trim $a " \n"]   set b [string trim $b " \n"]         regsub -all {&lt;.+?&gt;} $a {} a   regsub -all {&lt;.+?&gt;} $b {} b   putserv "PRIVMSG $chan :4$b 3Start Command !startmatch $a"   }}################################################################################################proc prerehash {type} {binds_down}proc binds_down {} {set b [binds "[namespace current]::*"]foreach _ $b {unbind [lindex $_ 0] [lindex $_ 1] [lindex $_ 2] [lindex $_ 4]}debug "[llength $b] binds is down"}proc main {} {bind pub  -|- !startmatch [namespace origin pub_startmatch]bind pub  -|- !stopmatch  [namespace origin pub_stopmatch]bind pub  -|- !infomatch  [namespace origin pub_infomatch]bind evnt -|- prerehash   [namespace origin prerehash]debug "[llength [binds "[namespace current]::*"]] binds is up"}################################################################################################# \D2\E5\EA\F1\F2\FBset_text en cricketarchive #101 "\00305You must specify #Id match."set_text en cricketarchive #102 "\00305Watching the match #Id %s added to display the current channel."set_text en cricketarchive #103 "\00305Watching the match #Id %s is already added to output for the current channel."set_text en cricketarchive #104 "\00305Watching the match #Id %s is stopped for the current channel."set_text en cricketarchive #105 "\00305Watching the match #Id %s is not conducted on the current channel."set_text en cricketarchive #106 "10Over: %s, 10Ball: %s, 10Runs: %s 4%s"      set_text en cricketarchive #107 "3%s 3%s"set_text en cricketarchive #108 "\00305Watching the match #Id %s stopped due to lack of output."#set_text en cricketarchive #109 "\00314%s \017&gt;&gt; \00314%s"      set_text en cricketarchive #109 "12 %s -|- %s %s %s "################################################################################################# \C7\E0\EF\F3\F1\EAmainset time_down [clock clicks -milliseconds]debug "v$version \[$date\] by $author loaded in [expr ($time_down-$time_up)/1000.0] s"}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Thu Jun 11, 2015 3:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2015-02-18T10:18:01-04:00</updated>

		<published>2015-02-18T10:18:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103499#p103499</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103499#p103499"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103499#p103499"><![CDATA[
Yeah the download url does not work. why don't you just paste the script here?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Wed Feb 18, 2015 10:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ChrisBruce]]></name></author>
		<updated>2015-02-17T16:04:03-04:00</updated>

		<published>2015-02-17T16:04:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103498#p103498</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103498#p103498"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103498#p103498"><![CDATA[
<blockquote class="uncited"><div>dont warry ill update it tomorrow .</div></blockquote>much appreciated.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12489">ChrisBruce</a> — Tue Feb 17, 2015 4:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[apnihost]]></name></author>
		<updated>2015-02-17T15:29:30-04:00</updated>

		<published>2015-02-17T15:29:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103497#p103497</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103497#p103497"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103497#p103497"><![CDATA[
dont warry ill update it tomorrow .<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12250">apnihost</a> — Tue Feb 17, 2015 3:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ChrisBruce]]></name></author>
		<updated>2015-02-17T09:52:00-04:00</updated>

		<published>2015-02-17T09:52:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103496#p103496</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103496#p103496"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103496#p103496"><![CDATA[
Thankyou for a rare and an outstanding share @apnihost.<br><br>But the url you put in your TCL is not working anymore.<br><br><a href="http://www.cricketarchive.com/Archive/Scorecards/%25s_commentary.html" class="postlink">http://www.cricketarchive.com/Archive/S ... ntary.html</a><br><br>I guess cricketarchive has stopped providing commentary and so the TCL doesn't worth nothing nomore.<br><br>Could you or anyone else from the community please make this TCL working by getting feeds from either cricinfo or cricbuzz?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12489">ChrisBruce</a> — Tue Feb 17, 2015 9:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[apnihost]]></name></author>
		<updated>2015-02-16T14:10:13-04:00</updated>

		<published>2015-02-16T14:10:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103491#p103491</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103491#p103491"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103491#p103491"><![CDATA[
lol man check again and click free download not <strong class="text-strong"><span style="color:red">PRIORITY DOWNLOAD</span></strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12250">apnihost</a> — Mon Feb 16, 2015 2:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ChrisBruce]]></name></author>
		<updated>2015-02-16T12:51:05-04:00</updated>

		<published>2015-02-16T12:51:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103490#p103490</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103490#p103490"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103490#p103490"><![CDATA[
<blockquote class="uncited"><div>Go Link and check this image<br><a href="http://s27.postimg.org/ta5nrtsbl/checkthisjpg.jpg" class="postlink">http://s27.postimg.org/ta5nrtsbl/checkthisjpg.jpg</a></div></blockquote>Man, it downloads an exe file named wlsetup-web.exe<br><br>It doesn't look like a TCL by any means.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12489">ChrisBruce</a> — Mon Feb 16, 2015 12:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[apnihost]]></name></author>
		<updated>2015-02-16T12:04:44-04:00</updated>

		<published>2015-02-16T12:04:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103489#p103489</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103489#p103489"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103489#p103489"><![CDATA[
Go Link and check this image<br><a href="http://s27.postimg.org/ta5nrtsbl/checkthisjpg.jpg" class="postlink">http://s27.postimg.org/ta5nrtsbl/checkthisjpg.jpg</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12250">apnihost</a> — Mon Feb 16, 2015 12:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ChrisBruce]]></name></author>
		<updated>2015-02-16T08:08:10-04:00</updated>

		<published>2015-02-16T08:08:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103488#p103488</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103488#p103488"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103488#p103488"><![CDATA[
But this not a TCL file. This is some sort of .iso file, seems like some Desktop Software.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12489">ChrisBruce</a> — Mon Feb 16, 2015 8:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[apnihost]]></name></author>
		<updated>2015-02-16T07:48:23-04:00</updated>

		<published>2015-02-16T07:48:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103484#p103484</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103484#p103484"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103484#p103484"><![CDATA[
reupload <br><br>website : <a href="http://www.cricketarchive.com" class="postlink">http://www.cricketarchive.com</a><br><br>Match Inforamtion<br><br>Code:<div class="codebox"><p>Code: </p><pre><code>&lt;iRoc&gt; !match&lt;iB0T&gt; Royal Challengers Bangalore 181-5 v Pune Warriors 155-5  - Royal Challengers Bangalore won Start Command !startmatch 333539&lt;iB0T&gt; Rajasthan Royals 95-3 v Mumbai Indians 94-8  - Rajasthan Royals won Start Command !startmatch 333538</code></pre></div><br>Start Command<br>Code:<div class="codebox"><p>Code: </p><pre><code>&lt;iRoc&gt; !startmatch 333538&lt;iB0T&gt; Watching the match #Id 333538 added to display the current channel.&lt;iB0T&gt; 3Last over 19: 3(1 run scored) Rajasthan Royals 95-3 (Taylor 13*, 18 balls, Menaria 4*, 4 balls)</code></pre></div><br>Stop Command<br>Code:<div class="codebox"><p>Code: </p><pre><code>&lt;iRoc&gt; !stopmatch 333538&lt;iB0T&gt; 05Watching the match #Id 333538 is stopped for the current channel.</code></pre></div><br><br><br><br>Download Link:<br><br>here is download link<br><a href="http://www.4shared.com/file/emV44X-nce/cricketarchive.html" class="postlink">http://www.4shared.com/file/emV44X-nce/ ... chive.html</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12250">apnihost</a> — Mon Feb 16, 2015 7:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2014-12-31T14:35:34-04:00</updated>

		<published>2014-12-31T14:35:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103425#p103425</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103425#p103425"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103425#p103425"><![CDATA[
Well, yeah. Its not like he actually WROTE the script. Hes just the only one who has it if im not mistaken.<br><br>Happy new year to everyone! <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=9145">spithash</a> — Wed Dec 31, 2014 2:35 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2014-12-31T13:33:12-04:00</updated>

		<published>2014-12-31T13:33:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103424#p103424</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103424#p103424"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103424#p103424"><![CDATA[
2 votes for that spithash!<br>And 1 for immature.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Wed Dec 31, 2014 1:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2014-12-31T13:27:54-04:00</updated>

		<published>2014-12-31T13:27:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103423#p103423</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103423#p103423"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103423#p103423"><![CDATA[
Yeah... no thank you. <br><br>This sounds a bit selfish.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Wed Dec 31, 2014 1:27 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hero]]></name></author>
		<updated>2014-12-31T12:28:52-04:00</updated>

		<published>2014-12-31T12:28:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103422#p103422</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103422#p103422"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103422#p103422"><![CDATA[
I Have The Tcl Spithash But I Can't Share. But I Can Park Bot For You If You Want?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12019">Hero</a> — Wed Dec 31, 2014 12:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spithash]]></name></author>
		<updated>2014-12-18T17:48:27-04:00</updated>

		<published>2014-12-18T17:48:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=103377#p103377</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=103377#p103377"/>
		<title type="html"><![CDATA[Live Cricket Commentary Script [ Version 1.1.0 ]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=103377#p103377"><![CDATA[
Anyone has this script and wants to share it again? The links are all broken  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":?" title="Confused"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9145">spithash</a> — Thu Dec 18, 2014 5:48 pm</p><hr />
]]></content>
	</entry>
	</feed>
