Madden 10 Online Franchise Website Team Stats Greasemonkey Script
Collapse
Recommended Videos
Collapse
X
-
Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script
Right click on the monkey at the bottom right of your browser & select Manage user script. Select the script and click edit towards the bottom left of the box. Open the script in notepad and find the numbers 792A & 552A by using control+f and change them to 551A. Save the script and close it. If you are still running into issues shoot me a PM.Comment
-
Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script
hey thanks man. that worked, although firefox crashed the first time i went to the online franchise website, but seems to be okay nowEagles | Phillies | Sixers | Flyers
PSN: JNes__
Comment
-
Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script
Thanks for the updated script!
I'm actually updating the script to add some ranking columns for the individual player stats.
For example, I have the following equation for giving a ranking to individual defenders, basically very similar to fantasy football:
(tackles + 3*sacks + 3*ints + 2*ff)/games played
Basically in the code it looks like this:
Code:DPStat.Rank = (DPStat.Tackles + (DPStat.Sacks*3) + (DPStat.Ints*3) + (DPStat.FF*2) )/ DPStat.Games;
Comment
-
Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script
Well, I hacked the script a little, and actually I think I put the calculation in the wrong place. So I'll edit it and put it where it belongs.. There's a section called "//Players" starting around line 750. That's where all the calculated "per game" stats are done. I was putting them farther down in the script in the function "athleteStatsProcessor(xhr)" where the stats are accumulated.
The calculation is one part. The other is just adding the column header so that the table shows up properly. That's the easy part and is farther up the script in the section called "//Setup Player Arrays". It's pretty self explanatory.
As for adding tackles for loss, the existing script isn't adding that up. The online franchise doesn't keep track of that. Actually all the player stats are being processed in that athleteStatsProcessor function. There's nothing we can do to add that stat category because EA decided it was best to not track that in online franchiseLast edited by djKianoosh; 08-30-2010, 08:42 PM.Comment
-
Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script
Thanks for your help.
I'm having trouble getting it to work still. When I add your code it breaks the script for me... it won't even load. I got the Column heading done and that shows up in the defensive player tab when I don't have the code in.
It looks like this in my script:Spoiler
WRs = {};
var divdps = createEmptyStatsTable("dptable", "Defensive Player Stats", dpsStats);
for(var i in DPs) {
DPStat.Rank = (DPStat.Tackles + (DPStat.Sacks*3) + (DPStat.Ints*3) + (DPStat.FF*2) )/ DPStat.Games;
addStatsToTable(divdps, toTableHTML(dpsStats, DPs[i]));
}
DPs = {};
Is that wrong?Comment
-
Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script
i posted an update to the script in my online franchise forum:
still working on it, but it works pretty good (note, my script is updated to use for PS3 leagues)Comment
Comment