<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Yahoo Fantasy Basketball | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/6177</link>
    <description>Recent comments on userscript: Yahoo Fantasy Basketball</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by dayeemasta @ Wed, 05 Nov 2008 19:58:47 -0600</title>
      <description>&lt;p&gt;Dave 3,&lt;/p&gt;

&lt;p&gt;Awesome work...thanks!&lt;/p&gt;

&lt;p&gt;I know this seems greedy, but is there any way you can get your script to work on the &quot;My Watch List&quot; page as well?&lt;/p&gt;

&lt;p&gt;-Greg&lt;/p&gt;</description>
      <pubDate>Wed, 05 Nov 2008 19:58:47 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46242</guid>
      <author>dayeemasta</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Wed, 05 Nov 2008 02:00:02 -0600</title>
      <description>&lt;p&gt;thanks kccputech - you'll have to open a new window or tab and navigate to your opponent's page to see his/her scores&lt;/p&gt;</description>
      <pubDate>Wed, 05 Nov 2008 02:00:02 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46243</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by kccputech @ Mon, 03 Nov 2008 21:20:31 -0600</title>
      <description>&lt;p&gt;Awesome job, well done.  No big deal, but is there a way to see your opponents scores for the night? Either I'm a dunce or it's not available. Thanks!&lt;/p&gt;</description>
      <pubDate>Mon, 03 Nov 2008 21:20:31 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46244</guid>
      <author>kccputech</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by aaron1325714 @ Sat, 09 Aug 2008 02:49:10 -0500</title>
      <description>&lt;p&gt;hey glenn i know my question has nothing to do with this script but i couldnt find your email anywhere&lt;/p&gt;

&lt;p&gt;so i was wondering if you could create this script except for baseball it is a bench all players without a game script&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/6716&quot;&gt;http://userscripts.org/scripts/show/6716&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;that is the script link&lt;/p&gt;

&lt;p&gt;and here is the actual script&lt;/p&gt;

&lt;p&gt;// ==UserScript==
&lt;br /&gt;// @name        Yahoo Fantasy NBA Bench All
&lt;br /&gt;// @namespace   &lt;a href=&quot;http://mattandchristy.net/benchall&quot;&gt;http://mattandchristy.net/benchall&lt;/a&gt;
&lt;br /&gt;// @description Provides a button to bench all players without a game
&lt;br /&gt;// @include     &lt;a href=&quot;http://basketball.fantasysports.yahoo.com/nba/*/*?date&quot;&gt;http://basketball.fantasysports.yahoo.com/nba/*...&lt;/a&gt;=*
&lt;br /&gt;// @include     &lt;a href=&quot;http://basketball.fantasysports.yahoo.com/nba/*/*/editroster&quot;&gt;http://basketball.fantasysports.yahoo.com/nba/*...&lt;/a&gt;
&lt;br /&gt;// ==/UserScript==
&lt;br /&gt;//
&lt;br /&gt;// Change log:
&lt;br /&gt;//  2006-12-10  Initial version of script; used Yahoo Fantasy NBA Game Log Link
&lt;br /&gt;//              as a base to start developing&lt;/p&gt;

&lt;p&gt;var doBench = function(event) {&lt;/p&gt;

&lt;p&gt;  var allElements;
&lt;br /&gt;  var thisElement;
&lt;br /&gt;  var playerLink = &quot;http://sports.yahoo.com/nba/players/&quot;
&lt;br /&gt;  var gameLogLink;
&lt;br /&gt;  
&lt;br /&gt;  
&lt;br /&gt;  allElements = document.evaluate(
&lt;br /&gt;    &quot;//*[contains(@class, 'player')]/..&quot;,
&lt;br /&gt;    document,
&lt;br /&gt;    null,
&lt;br /&gt;    XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
&lt;br /&gt;    null);
&lt;br /&gt;  
&lt;br /&gt;  // burn the first two rows; they are headers, not players
&lt;br /&gt;  for (var i = 2; i &amp;lt; allElements.snapshotLength; i++) {&lt;/p&gt;

&lt;p&gt;    thisElement = allElements.snapshotItem(i);&lt;/p&gt;

&lt;p&gt;    tds = thisElement.getElementsByTagName('td');
&lt;br /&gt;    nameNode = tds[1];
&lt;br /&gt;    if(nameNode) {
&lt;br /&gt;          // td       div        a          textnode   value
&lt;br /&gt;      name = nameNode.firstChild.firstChild.firstChild.nodeValue;
&lt;br /&gt;      
&lt;br /&gt;      // get the opponent TD's innerHTML; text node won't work because
&lt;br /&gt;      // the ? for 'no opponent' gets translated to a character =/
&lt;br /&gt;      opp  = tds[3].innerHTML;
&lt;br /&gt;      
&lt;br /&gt;      if(opp == '?') {
&lt;br /&gt;        
&lt;br /&gt;        newPosSelectNode = tds[2].firstChild;
&lt;br /&gt;        // select the 'BN' node for these guys (last option)
&lt;br /&gt;        newPosSelectNode.selectedIndex = newPosSelectNode.length-1;
&lt;br /&gt;        
&lt;br /&gt;        GM_log(&quot;Benching &quot; + name);
&lt;br /&gt;      }
&lt;br /&gt;    }  
&lt;br /&gt;  }
&lt;br /&gt;  
&lt;br /&gt;  // stop event propagation, if this was a click
&lt;br /&gt;  if(event) {
&lt;br /&gt;    event.stopPropagation();
&lt;br /&gt;    event.preventDefault();
&lt;br /&gt;  }
&lt;br /&gt;}&lt;/p&gt;

&lt;p&gt;/* 	    gameLogLink = document.createElement('a'); */
&lt;br /&gt;/*       gameLogLink.setAttribute(&quot;href&quot;,thisElement.href + &quot;/gamelog&quot;) */
&lt;br /&gt;/*       //gameLogLink.setAttribute(&quot;class&quot;,&quot;cellindent&quot;) */
&lt;br /&gt;/*       gameLogLink.setAttribute(&quot;target&quot;,&quot;_blank&quot;) */
&lt;br /&gt;/*       gameLogLink.setAttribute(&quot;title&quot;,&quot;game log link&quot;) */
&lt;br /&gt;/*       gameLogLink.innerHTML = &quot;&lt;img src=&quot;\\&quot;&gt;&quot;  */
&lt;br /&gt;/*       thisElement.parentNode.insertBefore(gameLogLink, thisElement.nextSibling.nextSibling); */&lt;/p&gt;

&lt;p&gt;var BENCHBUTTON_ID   = &quot;bencherButton&quot;;
&lt;br /&gt;var BENCHBUTTON_TEXT = &quot;[Bench players with no game]&quot;;&lt;/p&gt;

&lt;p&gt;// create the bench button
&lt;br /&gt;var bencher = document.createElement(&quot;A&quot;);
&lt;br /&gt;bencher.addEventListener(&quot;click&quot;, doBench, true);
&lt;br /&gt;bencher.href = &quot;#&quot;;
&lt;br /&gt;bencher.innerHTML = BENCHBUTTON_TEXT;
&lt;br /&gt;bencher.className = 'button';
&lt;br /&gt;/* bencher.style.backgroundColor = &quot;#D8D9D5&quot;; */
&lt;br /&gt;/* bencher.style.borderTopColor = &quot;#A8A8A8&quot;; */
&lt;br /&gt;/* bencher.style.borderBottomColor = &quot;#A8A8A8&quot;; */
&lt;br /&gt;/* bencher.style.borderLeftColor = &quot;#A8A8A8&quot;; */
&lt;br /&gt;/* bencher.style.borderRightColor = &quot;#A8A8A8&quot;; */
&lt;br /&gt;/* bencher.style.borderTopStyle = &quot;outset&quot;; */
&lt;br /&gt;/* bencher.style.borderBottomStyle = &quot;outset&quot;; */
&lt;br /&gt;/* bencher.style.borderLeftStyle = &quot;outset&quot;; */
&lt;br /&gt;/* bencher.style.borderRightStyle = &quot;outset&quot;; */
&lt;br /&gt;/* bencher.style.borderTopWidth = &quot;1px&quot;; */
&lt;br /&gt;/* bencher.style.borderBottomWidth = &quot;1px&quot;; */
&lt;br /&gt;/* bencher.style.borderLeftWidth = &quot;1px&quot;; */
&lt;br /&gt;/* bencher.style.borderRightWidth = &quot;1px&quot;; */
&lt;br /&gt;bencher.style.paddingTop = &quot;2px&quot;;
&lt;br /&gt;bencher.style.paddingBottom = &quot;5px&quot;;
&lt;br /&gt;bencher.style.paddingLeft = &quot;5px&quot;;
&lt;br /&gt;bencher.style.paddingRight = &quot;5px&quot;;
&lt;br /&gt;bencher.style.color = &quot;#FFFFFF&quot;;
&lt;br /&gt;bencher.id = BENCHBUTTON_ID;&lt;/p&gt;

&lt;p&gt;// attach the bench button right before the &quot;submit changes&quot; button
&lt;br /&gt;// at the bottom of the screen
&lt;br /&gt;var buttonBar = document.getElementById('buttonbar');
&lt;br /&gt;var inputs = buttonBar.getElementsByTagName('input');
&lt;br /&gt;var submitButton = inputs[inputs.length-1]
&lt;br /&gt;buttonBar.insertBefore(bencher, submitButton);&lt;/p&gt;

&lt;p&gt;i tried to mess around with it a little bit but got no luck&lt;/p&gt;

&lt;p&gt;please respond soon&lt;/p&gt;

&lt;p&gt;i will post this on a couple other pages to ensure that you get the message&lt;/p&gt;

&lt;p&gt;Aaron S&lt;/p&gt;</description>
      <pubDate>Sat, 09 Aug 2008 02:49:10 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46245</guid>
      <author>aaron1325714</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Sun, 24 Feb 2008 00:46:52 -0600</title>
      <description>&lt;p&gt;suoirafen - the player fix is in.  and yes...my saturday night is this boring.&lt;/p&gt;</description>
      <pubDate>Sun, 24 Feb 2008 00:46:52 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46246</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by suoirafen @ Sun, 24 Feb 2008 00:34:58 -0600</title>
      <description>&lt;p&gt;the new update works fine from what i've seen. but i was wondering if it was possible to make it so the links to the player pages could be fixed. &lt;/p&gt;

&lt;p&gt;the current links go to basketball.fantasysports.yahoo.com, while they should go to sports.yahoo.com&lt;/p&gt;</description>
      <pubDate>Sun, 24 Feb 2008 00:34:58 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46247</guid>
      <author>suoirafen</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Sat, 23 Feb 2008 00:33:49 -0600</title>
      <description>&lt;p&gt;in progress players should be processed correctly now.  I didn't have a chance to fully test it since most games have ended but I pushed the change anyway.  please let me know if you run into issues.&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2008 00:33:49 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46248</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Fri, 22 Feb 2008 00:48:31 -0600</title>
      <description>&lt;p&gt;yahoo tweaked their boxscores so I plan to update this script in the next day or two so that in progress games are processed correctly.  stay tuned&lt;/p&gt;</description>
      <pubDate>Fri, 22 Feb 2008 00:48:31 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46249</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Sun, 20 Jan 2008 01:48:35 -0600</title>
      <description>&lt;p&gt;B2608, the script only works when your players are in active/completed games.  so if there is no boxscore link on the page, you won't see anything.&lt;/p&gt;</description>
      <pubDate>Sun, 20 Jan 2008 01:48:35 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46250</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by B2608 @ Thu, 17 Jan 2008 09:04:24 -0600</title>
      <description>&lt;p&gt;The &quot;Show freebie stats&quot; shows but nothing happens after I clicked on it. Have tried it on 3 different PCs and even on 1 with firefox and greasemonkey freshly installed. Wondering if anyone else has this  issue&lt;/p&gt;</description>
      <pubDate>Thu, 17 Jan 2008 09:04:24 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46251</guid>
      <author>B2608</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Fri, 28 Dec 2007 01:45:09 -0600</title>
      <description>&lt;p&gt;thanks for the bug report king leo, I fixed the problem.&lt;/p&gt;</description>
      <pubDate>Fri, 28 Dec 2007 01:45:09 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46252</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by King Leonidus @ Wed, 26 Dec 2007 02:44:15 -0600</title>
      <description>&lt;p&gt;I think this may be a one-time fluke, but I was trying to use the script to get the day's totals of my opponent (head-to-head), and he has Shaq on his team.  Where the data for Shaq should be, it was Anderson Varejao's name and totals.  I say fluke because I'm guessing this will only happen if Shaq &amp;amp; Varejao are in the same box score.  My guess is something is going wrong handling the player ID's (Shaq=847; Varejao=3847).  This isn't a big deal since they will only meet what two more times this season, but I thought it was worth noting.&lt;/p&gt;</description>
      <pubDate>Wed, 26 Dec 2007 02:44:15 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46253</guid>
      <author>King Leonidus</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Chip Whitley @ Sun, 16 Dec 2007 04:07:52 -0600</title>
      <description>&lt;p&gt;Thanks for the update Dave, it works great.&lt;/p&gt;</description>
      <pubDate>Sun, 16 Dec 2007 04:07:52 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46254</guid>
      <author>Chip Whitley</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by bawilson @ Sun, 16 Dec 2007 01:04:27 -0600</title>
      <description>&lt;p&gt;Sorry I messed up on the copy there guys.  Dave I saw that your update doesn't include what I called the &quot;started&quot; column.  Yahoo also added a column showing if the player started and at what position.  Here's what I did to fix it.&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
'&amp;lt;thead&gt;&lt;tr&gt;&lt;td width=&quot;6%&quot;&gt;Pos&lt;/td&gt;&lt;td height=&quot;18&quot; width=&quot;18%&quot;&gt;&amp;nbsp;Name&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Started&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Min&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;FG&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;3Pt&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;FT&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;+/-&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;Off&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Reb&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Ast&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;TO&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Stl&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Blk&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;BA&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;PF&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;Pts&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&amp;lt;/thead&gt;' +

&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 16 Dec 2007 01:04:27 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46255</guid>
      <author>bawilson</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Sat, 15 Dec 2007 17:53:07 -0600</title>
      <description>&lt;p&gt;hey guys, thanks for the heads up about the boxscore changes.  I just updated the script to handle the new stats.&lt;/p&gt;

&lt;p&gt;King Leo, I never anticipated that people would update their weekly stats this way.  I wanted this script to be more lightweight than the baseball one so I didn't create the arrays.  maybe I'll do that next season or if yahoo makes drastic changes to the boxscore.&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2007 17:53:07 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46256</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by devohoang @ Sat, 15 Dec 2007 14:03:36 -0600</title>
      <description>&lt;p&gt;bawilson I tried the change and couldn't get it to work either. Could you double check the line of code  you posted? I just posted the two lines (original and modified) directly next to one another to compare and at a glance they look identical. Thanks&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2007 14:03:36 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46257</guid>
      <author>devohoang</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by bawilson @ Sat, 15 Dec 2007 12:17:40 -0600</title>
      <description>&lt;p&gt;Chip - I found that if you just modified the script and then reloaded the page that greasemonkey wouldn't pick up that the script had changed.  I had to either navigate away from the page and navigate back to it or just remove the &quot;#&quot; symbol from the web address.  Let me know if that works for you.  Here's a link to a screen shot of it working.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.christinasportraits.com/basketball/Screenshot.png&quot;&gt;http://www.christinasportraits.com/basketball/S...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2007 12:17:40 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46258</guid>
      <author>bawilson</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Chip Whitley @ Sat, 15 Dec 2007 03:53:38 -0600</title>
      <description>&lt;p&gt;bawilson, I tried to replace the line that you said and it doesn't fix it.  I tried to fix it but I have no idea what i'm doing.  Could you help me out?&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2007 03:53:38 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46259</guid>
      <author>Chip Whitley</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by bawilson @ Sat, 15 Dec 2007 00:53:16 -0600</title>
      <description>&lt;p&gt;Yahoo changed the way their box scores were set up.  They&#180;ve added three new columns.  The first new column signifies if the player started, second new column is the point differential while the player was on the court, and I&#180;m not sure what the third new column is for with the BA.  &lt;/p&gt;

&lt;p&gt;I&#180;ve gotten the script to work by changing line 178 in the script from 
&lt;br /&gt;&lt;pre&gt;
'&amp;lt;thead&gt;&lt;tr&gt;&lt;td width=&quot;6%&quot;&gt;Pos&lt;/td&gt;&lt;td height=&quot;18&quot; width=&quot;18%&quot;&gt;&amp;nbsp;Name&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Min&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;FG&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;3Pt&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;FT&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;Off&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Reb&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Ast&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;TO&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Stl&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Blk&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;PF&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;Pts&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&amp;lt;/thead&gt;' +
&lt;/pre&gt;
&lt;br /&gt;to
&lt;br /&gt;&lt;pre&gt;
'&amp;lt;thead&gt;&lt;tr&gt;&lt;td width=&quot;6%&quot;&gt;Pos&lt;/td&gt;&lt;td height=&quot;18&quot; width=&quot;18%&quot;&gt;&amp;nbsp;Name&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Min&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;FG&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;3Pt&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;FT&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;Off&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Reb&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Ast&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;TO&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Stl&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;Blk&lt;/td&gt;&lt;td width=&quot;6%&quot;&gt;PF&lt;/td&gt;&lt;td width=&quot;8%&quot;&gt;Pts&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&amp;lt;/thead&gt;' +
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;That should work until Dave has a change to update the script himself.&lt;/p&gt;</description>
      <pubDate>Sat, 15 Dec 2007 00:53:16 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46260</guid>
      <author>bawilson</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by King Leonidus @ Fri, 14 Dec 2007 21:14:02 -0600</title>
      <description>&lt;p&gt;hey dave, really fine stuff you've done with both scripts.  Just to let you know this script is no longer working as intended because Yahoo added new columns to the box score.  I don't know anything about javascript, but I played around with your baseball script because it could do the entire league (as pulled from the standings).  I managed to get it working with fantasy basketball to pull stats and even customize the order (using the Array).  Although I couldn't figure out how to make it deal with the shooting numbers as you have in the basketball.&lt;/p&gt;

&lt;p&gt;If this script will now require a system like the baseball one, where &lt;td&gt;'s are set to be a certain stat, would it be possible to have seperate columns for makes &amp;amp; attempts, and then pct's on another row (or column).  This would be a way for the many fans of your script to keep track of their weekly FG%'s on their own.&lt;/p&gt;

&lt;p&gt;Thanks for your hard work with this script.  I can't wait for the next brilliant update.&lt;/td&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 14 Dec 2007 21:14:02 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46261</guid>
      <author>King Leonidus</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by linkin06 @ Sun, 25 Nov 2007 18:08:44 -0600</title>
      <description>&lt;p&gt;yea i was referring to head to head leagues.  it is rather easy to just look at the match up stats from yahoo and adding in today's stats.  it's just with fg%, it doesn't work out as well. so i suppose it'd be really easy to just keep track of the weekly attempted and made shots at a minimum for a better idea where your fg and ft% stands.  thanks for all your work.&lt;/p&gt;</description>
      <pubDate>Sun, 25 Nov 2007 18:08:44 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46262</guid>
      <author>linkin06</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Joey Boy @ Thu, 22 Nov 2007 02:04:51 -0600</title>
      <description>&lt;p&gt;wow...nvm i got it to work&lt;/p&gt;

&lt;p&gt;much thanks man!&lt;/p&gt;</description>
      <pubDate>Thu, 22 Nov 2007 02:04:51 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46263</guid>
      <author>Joey Boy</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Joey Boy @ Thu, 22 Nov 2007 02:03:44 -0600</title>
      <description>&lt;p&gt;IT DOES'NT WORK MAN!!!&lt;/p&gt;

&lt;p&gt;I downloaded it...then downloaded the script and went to fantasy basketball on yahoo and none of the stats showed!&lt;/p&gt;</description>
      <pubDate>Thu, 22 Nov 2007 02:03:44 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46264</guid>
      <author>Joey Boy</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dave 3 @ Mon, 19 Nov 2007 23:52:01 -0600</title>
      <description>&lt;p&gt;linkin06 - is this for a h2h league?  don't they already have something similar when looking at the matchups?  they don't have the current days score but you could always open two windows; one for your team and the other for your opponent.   if enough people want this feature I'd definitely consider it.&lt;/p&gt;</description>
      <pubDate>Mon, 19 Nov 2007 23:52:01 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46265</guid>
      <author>Dave 3</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
    <item>
      <title>Archived Comments, replied by linkin06 @ Sun, 18 Nov 2007 23:02:06 -0600</title>
      <description>&lt;p&gt;i know this may be a little more daunting, but if there were a way to keep a running total for the week, that would be tremendous.  could be a ton of code, but i could imagine just creating a new variable for each category and adding totals.  the java seems fairly doable, and hopefully someone can implement it.&lt;/p&gt;</description>
      <pubDate>Sun, 18 Nov 2007 23:02:06 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13781:46266</guid>
      <author>linkin06</author>
      <link>http://userscripts.org/topics/13781</link>
    </item>
  </channel>
</rss>
