Updated Why should I use this over binary hacking (markdown)

LOuroboros 2023-06-21 08:08:46 -03:00
parent 3e7399e4e5
commit e65523fe41
1 changed files with 1 additions and 1 deletions

@ -1,4 +1,4 @@
Binary hacking is, for the most part, very limited. New features are hard to add without the base functionality being present already and tweaked as a result. On top of that, unlike source code, binary files are not readable by humans. While you may pass modified values to some functions, these values dont necessarily correspond to a specific action. In addition to that, hurdles of debugging and binary patching are often required to even see something different. While you can certainly inject code written in common languages such as C inside a ROM in binary hacking, the process involves external mechanisms such as the usage of a Python based template of sorts which still requires knowledge of the contents in the ROM. Binary hacking is, for the most part, very limited. New features are hard to add without the base functionality being present already and tweaked afterward. On top of that, unlike source code, binary files are not readable by humans. While you may pass modified values to some functions, these values dont necessarily correspond to a specific action. In addition to that, hurdles of debugging and binary patching are often required to even see something different. While you can certainly inject code written in common languages such as C inside a ROM in binary hacking, the process involves external mechanisms such as the usage of a Python based template of sorts which still requires knowledge of the contents in the ROM.
The decompilation, on the other hand, allows for direct usage of C code, allowing to write new functions and editing the game mechanics to ones liking with more clarity and without extra overhead. Some statements in the code are self-explanatory, and unlike binary hacking, modifying the code can serve a person well in real life as it is a valuable skill to use in the industry. The decompilation, on the other hand, allows for direct usage of C code, allowing to write new functions and editing the game mechanics to ones liking with more clarity and without extra overhead. Some statements in the code are self-explanatory, and unlike binary hacking, modifying the code can serve a person well in real life as it is a valuable skill to use in the industry.