Madden 10 Online Franchise Website Team Stats Greasemonkey Script

Collapse

Recommended Videos

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dog
    aka jnes12/JNes__
    • Aug 2008
    • 11846

    #121
    Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script

    Originally posted by tef
    You must have a PS3. You have to edit the script to make it work right.
    you are right.. so how do i edit the script or is there already a ps3 script somewhere?
    Eagles | Phillies | Sixers | Flyers
    PSN: JNes__

    Comment

    • tef
      Rookie
      • Jul 2004
      • 109

      #122
      Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script

      Originally posted by jnes12eaglesfan
      you are right.. so how do i edit the script or is there already a ps3 script somewhere?
      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

      • Dog
        aka jnes12/JNes__
        • Aug 2008
        • 11846

        #123
        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 now
        Eagles | Phillies | Sixers | Flyers
        PSN: JNes__

        Comment

        • djKianoosh
          Rookie
          • Mar 2009
          • 189

          #124
          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;
          This way, I can sort on the best individual defenders in the online franchise I commish. If you guys have any more sophisticated ways to rank players, not just defenders, but qbs, rbs, anyone, post your ideas here.

          Comment

          • Antec
            Retar Crew
            • Mar 2009
            • 943

            #125
            Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script

            How would I go about adding that column? It seems pretty interesting. Also while adding things is there any way to add a TFL column?

            Comment

            • djKianoosh
              Rookie
              • Mar 2009
              • 189

              #126
              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 franchise
              Last edited by djKianoosh; 08-30-2010, 08:42 PM.

              Comment

              • Antec
                Retar Crew
                • Mar 2009
                • 943

                #127
                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

                Is that wrong?

                Comment

                • djKianoosh
                  Rookie
                  • Mar 2009
                  • 189

                  #128
                  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

                  • mojo6911
                    Rookie
                    • Jun 2008
                    • 359

                    #129
                    Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script

                    Any chance this can be updated for Madden 12?

                    Comment

                    • mojo6911
                      Rookie
                      • Jun 2008
                      • 359

                      #130
                      Re: Madden 10 Online Franchise Website Team Stats Greasemonkey Script

                      to the top!

                      Comment

                      Working...