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!
Roster editor possible - But I'll need some help
Collapse
Recommended Videos
Collapse
X
-
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...
Comment
-
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
-
Cosmetic Guides to the Show v2 Rosters
STANCE GUIDE
http://bit.ly/HtkpmT
MOTION GUIDE
http://bit.ly/IqkdGh
Comment
-
Re: Roster editor possible - But I'll need some help
I figured out the offset for money/credits last nightSo, 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
.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
-
Re: Roster editor possible - But I'll need some help
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.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:
Output: Hello, World!?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");
?>Last edited by Matt Diesel; 06-04-2010, 08:59 AM.Return of the MackComment
-
Re: Roster editor possible - But I'll need some help
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.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.
Hopefully we can get Finn the game and see if he's willing to help out, if not...it'll be a LONG process lolComment
-
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
-
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
-
Comment
-
Re: Roster editor possible - But I'll need some help
My payPal account is just my email address:[email protected]Last edited by FlyingFinn; 06-05-2010, 12:27 PM.Comment
-
Re: Roster editor possible - But I'll need some help
I donated to the cause.<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]Comment

Comment