This is the AMP version of this page.
If you want to load the real page instead, click this text.

Tutorial Reverse bytes of file using Python

AndnixSH

PMT Elite Modder
Original poster
Staff member
Modding-Team
Jun 27, 2017
4,565
305,823
1,213
Modding World
Developers like to troll us by reversing whole bytes of DLL file so we have a python code to reverse back to original. Thanks to hokage242 for his simple code

Code:
open('name_of_your_file.dll','wb').write(open('name_of_your_file.dll','rb').read()[::-1])
Download Python: Welcome to Python.org

Create a .py file and add this code, edit, save and execute. Done.

Before:



After: