Roster editor possible - But I'll need some help

Collapse

Recommended Videos

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • grob23lbj
    Rookie
    • Jul 2006
    • 131

    #46
    Re: Roster editor possible - But I'll need some help

    Flying finn, if you can help hook this up it would be monumental. Up there with your 2k5 legacy. Your work kept video football gaming from dying with the exclusive crap!

    Comment

    • cgalligan
      MVP
      • Mar 2005
      • 1675

      #47
      Re: Roster editor possible - But I'll need some help

      Finn,

      I will personally buy you a copy of BackBreaker and I don't even own a 360, just so you can make an editor...

      Follow me on Twitter @CeeGeeDFS

      psn - CeeGee

      Comment

      • Fieldy Snutz
        Rookie
        • Aug 2008
        • 24

        #48
        Re: Roster editor possible - But I'll need some help

        Holy crap, if Finn were to work on this it would take Backbreaker to a whole new level! My HERO!

        Comment

        • mrjordan
          Banned
          • Apr 2005
          • 558

          #49
          Re: Roster editor possible - But I'll need some help

          FANTASTIC news...Finn wins over a whole new generation of football fans...
          Biggest news since...Backbreaker!

          Comment

          • TheRunAndShoot
            MVP
            • Sep 2008
            • 1177

            #50
            Re: Roster editor possible - But I'll need some help

            Originally posted by cgalligan
            Finn,

            I will personally buy you a copy of BackBreaker and I don't even own a 360, just so you can make an editor...

            If he's got paypal I'll throw in a couple bucks.
            Cosmetic Guides to the Show v2 Rosters

            STANCE GUIDE
            http://bit.ly/HtkpmT
            MOTION GUIDE
            http://bit.ly/IqkdGh

            Comment

            • xNYGx
              Banned
              • Mar 2010
              • 343

              #51
              Re: Roster editor possible - But I'll need some help

              AMEN!

              Comment

              • chrome_305
                Pro
                • Dec 2006
                • 700

                #52
                Re: Roster editor possible - But I'll need some help

                Originally posted by eaglesfan17
                So, by simply opening a roster file in a hex editor, I'm able to manipulate player ratings very easily and get them back in the game with no issues. Now, with that in mind, in order to make this available to the community, I'll need someone who has some programming experience to help me out.

                All we need to do is be able to manipulate simple hex files and save them. So we'll just need a GUI which displays the information from the hex files and allows the user to change the data.

                Myself, I have absolutely zero programming experience (I'm a network engineer ), so I'm reaching out to the community to see if we have anyone who can help out

                Here is an example of what I'm seeing in the hex editor (the player's name is Donte Byrd):

                Unlimited space to host images, easy to use image uploader, albums, photo hosting, sharing, dynamic image resizing on web and mobile.


                Here is the section related the the player's rating:

                Unlimited space to host images, easy to use image uploader, albums, photo hosting, sharing, dynamic image resizing on web and mobile.


                The ratings are in the following order:
                Speed, Strength, Agility, Focus

                This player's ratings are:
                58, 65, 56, 81
                I figured out the offset for money/credits last night .So now i have 9999999 credits.I can share the info with anyone that wants it. The offset for credits start at 00330530 just change the first 6bytes to 98 96 7f which is $9999999.

                Makes it real easy to buy players now. Also can anyone point me in the right direction, so i can learn how to correctly save,upload the modded hxd file. It would make viewing the file easier on the forum.If all else fail i can upload my save file.
                Last edited by chrome_305; 06-04-2010, 07:43 AM.
                My blog: http://lazy-rainbow.blogspot.com/

                Comment

                • Matt Diesel
                  MVP
                  • Mar 2003
                  • 1637

                  #53
                  Re: Roster editor possible - But I'll need some help

                  Originally posted by eaglesfan17
                  Matt,

                  Converting the hex to ASCII format is not an issue, honestly. I mean, even with my limited knowledge of PHP (the only language I'm familiar with), I can do that. The need is for a GUI that reads the data, presents it in a readable format, and allows for user manipulation.

                  And just for giggles, what your code would look like in PHP:

                  PHP Code:
                  <?php
                      
                  /* convert a string of hex values to an ascii string */
                      
                  function hex2str($hex) {
                        for(
                  $i=0;$i<strlen($hex);$i+=2)
                          
                  $str .= chr(hexdec(substr($hex,$i,2)));
                   
                        return 
                  $str;
                      }
                   
                      echo 
                  hex2str("48656C6C6F2C20576F726C64210A");


                  ?>
                  Output: Hello, World!?
                  Haha Cool. I figured that perl was in no way extensive. I had some of it laying around and made a few changes and threw it up here for brainstorming purposes. I know some python, which is better for GUI manipulations, but Im sure Finn is better at doing that. I havent used python in 3 or so years.
                  Last edited by Matt Diesel; 06-04-2010, 08:59 AM.
                  Return of the Mack

                  Comment

                  • eaglesfan17
                    Rookie
                    • Aug 2004
                    • 186

                    #54
                    Re: Roster editor possible - But I'll need some help

                    Originally posted by Matt Diesel
                    Haha Cool. I figured that perl was in no way extensive. I had some of it laying around and made a few changes and threw it up here for brainstorming purposes. I know some python, which is better for GUI manipulations, but Im sure Finn is better at doing that. I havent used python in 3 or so years.
                    Yeah...If no headway is made, I might try to get a simple GUI in VB.net or something, but the problem is that some of the data has to be read in ASCII, other has to be converted to just it's number representation (the player ratings) and there is a lot of information in the save files that I have no clue what it does.

                    Hopefully we can get Finn the game and see if he's willing to help out, if not...it'll be a LONG process lol

                    Comment

                    • catcatch22
                      Or should I
                      • Sep 2003
                      • 3378

                      #55
                      Re: Roster editor possible - But I'll need some help

                      I actually did this myself and when I put the file back into the game it did not load up properly. It gave me an error.

                      Comment

                      • eaglesfan17
                        Rookie
                        • Aug 2004
                        • 186

                        #56
                        Re: Roster editor possible - But I'll need some help

                        Odd, what program are you using to rehash/resign? I was using 'Modio' and it worked flawlessly.

                        Comment

                        • catcatch22
                          Or should I
                          • Sep 2003
                          • 3378

                          #57
                          Re: Roster editor possible - But I'll need some help

                          Originally posted by eaglesfan17
                          Odd, what program are you using to rehash/resign? I was using 'Modio' and it worked flawlessly.
                          A different freeware program. I'll just try another then.

                          Comment

                          • mrjordan
                            Banned
                            • Apr 2005
                            • 558

                            #58
                            Re: Roster editor possible - But I'll need some help

                            Originally posted by TheRunAndShoot
                            If he's got paypal I'll throw in a couple bucks.
                            I will contribute as well.

                            Finn, we'll get you the game.
                            how would you like to do this? Do you have paypal?

                            Comment

                            • FlyingFinn
                              MVP
                              • Jul 2002
                              • 3956

                              #59
                              Re: Roster editor possible - But I'll need some help

                              Originally posted by mrjordan
                              I will contribute as well.

                              Finn, we'll get you the game.
                              how would you like to do this? Do you have paypal?
                              My payPal account is just my email address:[email protected]
                              Last edited by FlyingFinn; 06-05-2010, 12:27 PM.

                              Comment

                              • eaglesfan17
                                Rookie
                                • Aug 2004
                                • 186

                                #60
                                Re: Roster editor possible - But I'll need some help

                                Originally posted by FlyingFinn
                                <HTML><form action="https://www.paypal.com/cgi-bin/webscr" method="post">
                                <input type="hidden" name="cmd" value="_xclick">
                                <input type="hidden" name="business" value="[email protected]">
                                <input type="hidden" name="no_note" value="1">
                                <input type="hidden" name="currency_code" value="USD">
                                <input type="hidden" name="tax" value="0">
                                <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
                                </form></HTML>

                                My payPal account is just my email address:[email protected]
                                I donated to the cause.

                                Comment

                                Working...