jetpac
March 15, 2011 at 11:48PM View BBCode
Track, like how? Just click on their page that you want to track them, and then have another page that shows their ratings?
mattyb5000
March 16, 2011 at 01:55PM View BBCode
Originally posted by jetpac
Track, like how? Just click on their page that you want to track them, and then have another page that shows their ratings?
Something like that. I've had this feature in fantasy baseball leagues I play in, where I can click on a button to "track this player", and then there's a separate page where I can look at all the players I've decided to follow. It shouws who they play for, stats (or in this case ratings) etc. I always envisioned this being incorporated into the Trade Desk feature, since I would only track players I'm interested in trading for.
bpearly69
March 25, 2011 at 10:43PM View BBCode
// ==UserScript==
// @name SETH
// @namespace http://www.simdynasty.com
// @description The Simdynasty Enhancement THingy adds functionality to Simdynasty.com
// @include http://simdynasty.com/*
// @include http://*.simdynasty.com/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js
// @require https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js
// @resource uiCss http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/base/jquery-ui.css
// @version 1.0.3
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var stylesheet = document.createElement("link");
stylesheet.setAttribute("rel", "stylesheet");
stylesheet.setAttribute("type", "text/css");
stylesheet.setAttribute("href", "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/base/jquery-ui.css");
var script = document.createElement("script");
script.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")(false);";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
document.body.appendChild(stylesheet);
}
thats wha i got when trying to click install
jetpac
March 26, 2011 at 03:19AM View BBCode
what browser? If Firefox, do you have Greasemonkey installed?
alecansky74
January 31, 2012 at 05:43AM View BBCode
Would be nice if this was offered for playoff stats as well
terrywilliam
March 15, 2012 at 07:13AM View BBCode
Does SETH has the feature to track the other team player's also? Any Idea about this, If yes, please explain in more detail how it tracks.
jetpac
September 20, 2012 at 02:56AM View BBCode
I haven't had much time to hang around SD lately, so development on this has kind of stalled. I'd still like to come back to it in the future, but in the mean time I've put the source up on GitHub, so if there are any programmers on here that would like to contribute, please feel free!
https://github.com/jetpacmonkey/SETH
Pages: 1 2