Python import files

05/29/2013 19:45 LordThink#1
Hi all,

When modifying the client Python files, almost all of them include something like
Code:
import locale
import net
import player
Yet I can't find those files anywhere! Where the hell are they loaded from?
I've been able to retrieve the functions names but not the code... because I can't find the source.

Any help?
05/29/2013 19:50 [uLow]Beni#2
because it is direct in the metin2 binary.
the source of these modules was in c(++), but its compiled and you can only disassemble this functions with ollydbg or cheat engine.
05/29/2013 20:03 LordThink#3
Quote:
Originally Posted by !Beni! View Post
because it is direct in the metin2 binary.
the source of these modules was in c(++), but its compiled and you can only disassemble this functions with ollydbg or cheat engine.
I guessed, but THANK you for confirming. I can now stop looking into disassembling these files.

Consider this thread solved.