You are viewing our Forum Archives. To view or take place in current topics click here.
Hex Editing Question
Posted:
Hex Editing QuestionPosted:
Status: Offline
Joined: Jan 09, 201311Year Member
Posts: 1,444
Reputation Power: 74
Status: Offline
Joined: Jan 09, 201311Year Member
Posts: 1,444
Reputation Power: 74
Hey guys, I was wondering how people get so good at hex editing. If I were to learn where would I go (online) to do so? Do I need to know any other stuff to learn how to do it, or could I just learn hex editing alone?
Thanks.
Thanks.
#2. Posted:
Status: Offline
Joined: Jun 02, 201212Year Member
Posts: 2,049
Reputation Power: 96
they learn from problems, errors, etc. but you can learn from anywhere
- 1useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Oct 31, 201014Year Member
Posts: 2,084
Reputation Power: 95
Status: Offline
Joined: Oct 31, 201014Year Member
Posts: 2,084
Reputation Power: 95
Describe wrote they learn from problems, errors, etc. but you can learn from anywhere
I just learned over time, editing gamesaves & mapping them out; after a while you just get good at it. (If this is the kind of stuff you are referring to)
Last edited by XBLToothPik ; edited 1 time in total
- 1useful
- 0not useful
#4. Posted:
Status: Offline
Joined: May 09, 201311Year Member
Posts: 2
Reputation Power: 0
Status: Offline
Joined: May 09, 201311Year Member
Posts: 2
Reputation Power: 0
Depends. If you are trying to edit a ROM (i.e. Mario Party 64) then you could find it on YouTube. As for editing anything else, I'm not too sure about that, seeing how I'm not a programmer or whatever.
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Jan 09, 201311Year Member
Posts: 1,444
Reputation Power: 74
Status: Offline
Joined: Jan 09, 201311Year Member
Posts: 1,444
Reputation Power: 74
Describe wrote they learn from problems, errors, etc. but you can learn from anywhereWell I tried youtube, and it's nothing but NBA and NFS modding tuts. I don't want to learn how to mod those specific games. I want to learn how to be able to do hex editing on any game that I have that allows me to.
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Jun 02, 201212Year Member
Posts: 2,049
Reputation Power: 96
DrewPeadic wroteGet .DLL's and check its code play around with editing etc. Never "Back Space" always just write over.Describe wrote they learn from problems, errors, etc. but you can learn from anywhereWell I tried youtube, and it's nothing but NBA and NFS modding tuts. I don't want to learn how to mod those specific games. I want to learn how to be able to do hex editing on any game that I have that allows me to.
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Jan 09, 201311Year Member
Posts: 1,444
Reputation Power: 74
Status: Offline
Joined: Jan 09, 201311Year Member
Posts: 1,444
Reputation Power: 74
Describe wroteThanks for the responses, I will try thatDrewPeadic wroteGet .DLL's and check its code play around with editing etc. Never "Back Space" always just write over.Describe wrote they learn from problems, errors, etc. but you can learn from anywhereWell I tried youtube, and it's nothing but NBA and NFS modding tuts. I don't want to learn how to mod those specific games. I want to learn how to be able to do hex editing on any game that I have that allows me to.
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
DiamondCoding wroteDrewPeadic wroteGet .DLL's and check its code play around with editing etc. Never "Back Space" always just write over.Describe wrote they learn from problems, errors, etc. but you can learn from anywhereWell I tried youtube, and it's nothing but NBA and NFS modding tuts. I don't want to learn how to mod those specific games. I want to learn how to be able to do hex editing on any game that I have that allows me to.
I wouldn't recommend trying to modify a dll with a hex editor unless you know what you're doing, i.e. understand assembly instructions and their op-codes.
@OP, to get better at hex editing, you have to get better at programming. You need to understand the data structures that you're looking at before trying to recognize them. You need to learn how arrays and structs work before you can really even try to understand a save format. Once you truly understand different data structures, you'll begin to recognize them in game saves.
- 2useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Jun 02, 201212Year Member
Posts: 2,049
Reputation Power: 96
Experiment5X wroteModding a .DLL for like mw3 that has mods is not hard bubby, you simply Ctrl + F type "^1" then write over the text. Its easy. And best choice since he is starting outDiamondCoding wroteDrewPeadic wroteGet .DLL's and check its code play around with editing etc. Never "Back Space" always just write over.Describe wrote they learn from problems, errors, etc. but you can learn from anywhereWell I tried youtube, and it's nothing but NBA and NFS modding tuts. I don't want to learn how to mod those specific games. I want to learn how to be able to do hex editing on any game that I have that allows me to.
I wouldn't recommend trying to modify a dll with a hex editor unless you know what you're doing, i.e. understand assembly instructions and their op-codes.
@OP, to get better at hex editing, you have to get better at programming. You need to understand the data structures that you're looking at before trying to recognize them. You need to learn how arrays and structs work before you can really even try to understand a save format. Once you truly understand different data structures, you'll begin to recognize them in game saves.
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
DiamondCoding wroteExperiment5X wroteModding a .DLL for like mw3 that has mods is not hard bubby, you simply Ctrl + F type "^1" then write over the text. Its easy. And best choice since he is starting outDiamondCoding wroteDrewPeadic wroteGet .DLL's and check its code play around with editing etc. Never "Back Space" always just write over.Describe wrote they learn from problems, errors, etc. but you can learn from anywhereWell I tried youtube, and it's nothing but NBA and NFS modding tuts. I don't want to learn how to mod those specific games. I want to learn how to be able to do hex editing on any game that I have that allows me to.
I wouldn't recommend trying to modify a dll with a hex editor unless you know what you're doing, i.e. understand assembly instructions and their op-codes.
@OP, to get better at hex editing, you have to get better at programming. You need to understand the data structures that you're looking at before trying to recognize them. You need to learn how arrays and structs work before you can really even try to understand a save format. Once you truly understand different data structures, you'll begin to recognize them in game saves.
Hm, I've never done anything with MW3 stuff so I'm not entirely sure what you're talking about, but either way if he's just searching for something that he read from a tutorial he's never going to learn what's actually going on. To understand the data structures that he's modifying he needs to learn how to program.
EDIT: Actually, I think I know what you're talking about. Searching for a string and replacing it with whatever you want isn't difficulty, anyone can do that. I thought we were talking about figuring out game save structures.
Last edited by Experiment5X ; edited 2 times in total
- 1useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.