Register for your free account! | Forgot your password?
Rust Cheats

Go Back   elitepvpers > Popular Games > Metin2 > Metin2 Hacks, Bots, Cheats, Exploits & Macros
You last visited: Today at 07:23

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[TOOL] Metin2 File Extractor + Source

Discussion on [TOOL] Metin2 File Extractor + Source within the Metin2 Hacks, Bots, Cheats, Exploits & Macros forum part of the Metin2 category.

Reply
 
Old 11/10/2009, 15:07   #76
 
Tyrar's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 1,637
Received Thanks: 1,119
Quote:
Originally Posted by lolkid2009 View Post
Theoretisch ja
Allerdings musste den code fürs entpacken zu nem coder fürs packen umschreiben und da die suzätzlich verschlüsselt sind den für entschlüsseln zu verschlüsseln soweit ich das jetzt verstanden habe.
Kannst natürlich das packen auch vom client rippen wie der Autor^^
ich glaube der client entpackt nur
wär auch zu geil wenn er irgendwas packt XD
Tyrar is offline  
Old 11/10/2009, 16:13   #77
 
elite*gold: 0
Join Date: Apr 2009
Posts: 5
Received Thanks: 1
I see now... you are the best... I try to create a program to recompress py file in epk file but what IDE was used for compiling this suorce? In Dev there are error.
GabriPr0 is offline  
Old 11/10/2009, 17:30   #78

 
elite*gold: 0
Join Date: Jul 2009
Posts: 2,471
Received Thanks: 5,623
Hm stimmt die Patches suchen ja in den Temporär entpackten dateien nach den bytes und ersetzen sie. RTP Byte Patch wird ja verwendet.
.Alpha. is offline  
Old 11/15/2009, 14:45   #79
 
elite*gold: 577
Join Date: Oct 2009
Posts: 665
Received Thanks: 3,502
So, ich hab mal nen bisschen Zeit investiert und bin zu folgendem Code gekommen:

Code:
€dit: Code removed!
Bei dem Verschlüsselungsalgorithmus handelt es sich um eine modifizierte Version des XTEA algorithmus.

(PS: Compression auch geknackt, werd code nacher posten + sample app)

MfG Tim66
tim66613 is offline  
Old 11/17/2009, 14:31   #80
 
elite*gold: 0
Join Date: Jun 2009
Posts: 25
Received Thanks: 2
hi,tim66613
thanks for your code .have you use this function to decompress the epk file? i can now decrypt the eix, but can't decompress the epk as it is compressed same as LZ code.
sunjunps is offline  
Old 11/18/2009, 15:52   #81
 
elite*gold: 577
Join Date: Oct 2009
Posts: 665
Received Thanks: 3,502
@sunjunps The code I've posted above has nothing to do with archive decompression.
tim66613 is offline  
Old 11/19/2009, 13:46   #82
 
elite*gold: 0
Join Date: Jun 2009
Posts: 25
Received Thanks: 2
@tim66613
I have try to use below code to decrypt the eix every 8 bytes, but i have no idea to encrypt again. I think you maybe found some way to extract epk and repack the file to epk.

Code:
Dim d As UInteger = Convert.ToInt32(ta.Text.Substring(0, 8), 16)
        Dim c As UInteger = Convert.ToInt32(ta.Text.Substring(8, 8), 16)

        'For eix
        Dim mtKey() As Byte = New Byte() {&HB9, &H9E, &HB0, &H2, &H6F, &H69, &H81, &H5, &H63, &H98, &H9B, &H28, &H79, &H18, &H1A, &H0, _
                                          &H22, &HB8, &HB4, &H4, &H64, &HB2, &H6E, &H1F, &HAE, &HEA, &H18, &H0, &HA6, &HF6, &HFB, &H1C}
        'For item_proto
        Dim mtKey3() As Byte = New Byte() {&HA1, &HA4, &H2, &H0, &HAA, &H15, &H54, &H4, &HE7, &H8B, &H5A, &H18, &HAB, &HD6, &HAA, &H1}

        '解Item_Proto的Key  A1 A4 02 00 AA 15 54 04 E7 8B 5A 18 AB D6 AA 01
        '所有KEY
        'B9 9E B0 02 6F 69 81 05 63 98 9B 28 79 18 1A 00 
        '22 B8 B4 04 64 B2 6E 1F AE EA 18 00 A6 F6 FB 1C
        'A1 A4 02 00 AA 15 54 04 E7 8B 5A 18 AB D6 AA 01



        Dim a As UInteger = &HC6EF3720
        Dim b As UInteger, p As UInteger


        For i As Integer = 0 To 31
            c = c - ((((d >> 5) Xor (d << 4)) + d) Xor (BitConverter.ToUInt32(mtKey3, ((a >> &HB) And 3) * 4) + a))
            a = a + &H61C88647

            d = d - ((((c >> 5) Xor (c << 4)) + c) Xor (BitConverter.ToUInt32(mtKey3, (a And 3) * 4) + a))

        Next
sunjunps is offline  
Old 11/20/2009, 19:18   #83
 
elite*gold: 577
Join Date: Oct 2009
Posts: 665
Received Thanks: 3,502
If you want to encrypt it again you only need to call the LZObject::LZEncryptFile method.

Sample Code:
Code:
	const char* sampleData = "Hello World!";
	uint8_t* cryptedBuffer = new uint8_t[1024];
	uint8_t* unencryptedBuffer = new uint8_t[1024];

	uint32_t cryptedSize = LZObject::LZEncryptFile((unsigned long*)cryptedBuffer, (unsigned long*)sampleData, LZObject::EPK_KEY, strlen(sampleData));

	LZObject::LZDecryptFile((unsigned long*)unencryptedBuffer, (unsigned long*)cryptedBuffer, LZObject::EPK_KEY, cryptedSize);

	printf("Is Ok = %s\n", (const char*)unencryptedBuffer);
tim66613 is offline  
Old 11/26/2009, 09:42   #84
 
dawid2333's Avatar
 
elite*gold: 0
Join Date: Mar 2009
Posts: 6
Received Thanks: 1
Wir freuen uns auf repacker. Dank sehr pushedx.
Außerdem befasst sich mit der Programmierung, aber bis ich lernen.


We look forward to repacker. Thanks very pushedx. In addition, deals with the programming, but until I learn.
dawid2333 is offline  
Thanks
1 User
Old 11/26/2009, 16:09   #85
 
elite*gold: 0
Join Date: May 2009
Posts: 32
Received Thanks: 3
Ich sag nur eins kak programm
StreetX128 is offline  
Thanks
1 User
Old 12/02/2009, 22:16   #86
 
elite*gold: 0
Join Date: Mar 2009
Posts: 46
Received Thanks: 49
thx, usefull
Shannou06 is offline  
Old 12/02/2009, 23:33   #87
 
elite*gold: 626
Join Date: Aug 2009
Posts: 7,149
Received Thanks: 2,943
Das Prog ist mit C++ geschrieben
Nice And thx
тrαder is offline  
Old 12/12/2009, 10:04   #88
 
elite*gold: 0
Join Date: Apr 2008
Posts: 75
Received Thanks: 52
wenn ich das ganze mit ner batch starte kommt die meldung: excetion occured!

Permission denied usw

Filename: Source/atlasinfo.txt

gibts dafür schon ne lösung?
fertinig is offline  
Old 12/25/2009, 12:52   #89
 
.::Reaper::.'s Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 198
Received Thanks: 112
Moin

Mir ist soebend aufgefallen, dass das bei der DE Client 2007 nicht so wirklich geht.

Ich habe das ganze bei Korea und Multiclient ausprobiert ud es klappte einwandfrei.
Doch bei der DE ändert sich garnichts. Laut Extractor wurde erfolgreich entpackt. Doch das ist nciht der Fall. Es ist keinerlei neue Datein da. Nur halt diese standart metin2 datein.

Kann da evtl jemand weiterhelfen oder sogar den bereits den entpackten Client hochladen? Währe echt super.

Gruß
MatriX44
.::Reaper::. is offline  
Old 12/29/2009, 17:39   #90
 
elite*gold: 0
Join Date: May 2009
Posts: 1
Received Thanks: 0
pls Video Tutorial
Chudy223 is offline  
Reply


Similar Threads Similar Threads
metin2 file extractor
07/12/2010 - Metin2 Private Server - 0 Replies
HAT SICH ERLEDIGT
Metin2 File Extractor: No dw2 field set for the file
02/20/2010 - Metin2 Private Server - 14 Replies
Hallo zusammen. Wollte heute anfangen meinen Pserver Client zu modden. Hab den File Extractor in den Ordner von meinem Benutzer (der heißt Metin2) entpackt, ihn in FE umbenannt, dann folgendes in cmd eingegeben (mein Client liegt in meinem Benutzer Ordner, Client, WOM2) http://www.abload.de/img/client12iupf.jpg Client befindet sich hier: http://www.abload.de/img/client11cugl.jpg Und dieser Fehler kommt: http://www.abload.de/img/client13n6yh.jpg
[HELP]Metin2 File Extractor?
01/20/2010 - Metin2 Private Server - 4 Replies
Hallo epvper, Also ich habe SuFu benutzt alles gemacht was da steht bei Metin2 File Extractor thread aber es klappt einfach nicht , ich weis nicht wie ich .eix oder .epx öffne. Auserdem habe ich Vista... In thread wird beschrieben man sollte in "Einstellungen und ...." machen aber bei Vista gibt es sowas nicht ... kann bitte mir einer helfen ?
[HELP]Metin2 File Extractor?
01/19/2010 - Metin2 Private Server - 0 Replies
Hallo epvper, Also ich habe SuFu benutzt alles gemacht was da steht bei Metin2 File Extractor thread aber es klappt einfach nicht , ich weis nicht wie ich .eix oder .epx öffne. Auserdem habe ich Vista... In thread wird beschrieben man sollte in "Einstellungen und ...." machen aber bei Vista gibt es sowas nicht ... kann bitte mir einer helfen ?



All times are GMT +1. The time now is 07:24.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.