Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Kal Online
You last visited: Today at 14:29

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

Advertisement



[Source]KOCP SE 2.16.50-0321 DAT-Files entschluesseln

Discussion on [Source]KOCP SE 2.16.50-0321 DAT-Files entschluesseln within the Kal Online forum part of the MMORPGs category.

Reply
 
Old   #1
 
rEdoX's Avatar
 
elite*gold: 20
Join Date: Jan 2006
Posts: 539
Received Thanks: 228
[Source]KOCP SE 2.16.50-0321 DAT-Files entschluesseln

Habs schon vor nem 3/4 Jahr im UG bereich gepostet. Gestern wurde ich gebeten es hier zu posten.

Erst mit der normalen methode entschluesseln, dann diese hier verwenden

Code:
procedure Decrypt_PServer(pDatFile, pNewMem, dwSize: DWOrd);
var
  local2, local3, tmp: Byte;
begin
  local2 := 1;
  local3 := 0;
  while dwSize <> 0 do
  begin
    tmp := CryptTable2[local2];
    local3 := (local3 + tmp) and ;
    CryptTable2[local2] := CryptTable2[local3];
    CryptTable2[local3] := tmp;
    pByte(pNewMem)^ := pByte(pDatFile)^ xor CryptTable2[(CryptTable2[local2] + CryptTable2[local3]) and ];
    inc(local2);
    inc(pDatFile);
    inc(pNewMem);
    dec(dwSize);
  end;
end;

const CryptTable2: array[0..255] of byte = (
$57, $A6, $92, $08, $A3, $C1, $12, $31,
$DF, $06, $15, $36, $2E, $F5, $53, $F2,
$59, $BA, $64, $65, $C9, $A7, $68, $FB,
$8B, $78, $22, $89, $DA, $56, $4B, $49,
$2C, $C0, $2B, $18, $1B, $73, $0F, $91,
$0B, $09, $98, $3D, $01, $EC, $20, $A9,
$E8, $DD, $7B, $D7, $32, $86, $E3, $6A,
$87, $17, $B5, $28, $D8, $7D, $3E, $E0,
$E4, $70, $75, $C8, $B8, $7F, $90, $D0,
$7E, $3C, $A2, $8E, $9F, $CB, $CC, $24,
$4E, $E5, $35, $AD, $34, $45, $A1, $67,
$99, $B4, $BE, $C3, $CF, $03, $29, $CD,
$27, $38, $CE, $B6, $8D, $B7, $77, $85,
$33, $13, $FC, $16, $66, $44, $4C, $F7,
$E1, $F9, $60, $6D, $1F, $EB, $2F, $9C,
$DE, $19, $9B, $F8, $10, $95, $04, $E6,
$6F, $AB, $B9, $30, $50, $58, $B0, $0A,
$B2, $00, $4D, $79, $D9, $41, $9E, $EE,
$42, $55, $F3, $2D, $6E, $AE, $EA, $51,
$C7, $9D, $D4, $E2, $A4, $5B, $80, $D1,
$81, $3B, $FF, $93, $14, $6B, $A8, $5D,
$5F, $52, $0C, $43, $DB, $11, $AA, $4F,
$5E, $1A, $BC, $63, $BF, $72, $CA, $FD,
$3A, $62, $25, $FA, $96, $C5, $82, $76,
$F4, $C4, $D2, $05, $02, $74, $1E, $EF,
$23, $BD, $DC, $83, $B3, $8F, $40, $8A,
$BB, $8C, $4A, $1D, $37, $6C, $2A, $D3,
$39, $5C, $88, $D6, $54, $0D, $FE, $69,
$5A, $9A, $E7, $07, $F1, $7C, $AF, $D5,
$61, $48, $C6, $B1, $21, $F6, $97, $C2,
$F0, $47, $1C, $94, $84, $46, $26, $A5,
$71, $0E, $AC, $ED, $3F, $A0, $7A, $E9);
rEdoX is offline  
Thanks
12 Users
Old 09/03/2008, 14:37   #2
 
elite*gold: 0
Join Date: Mar 2007
Posts: 206
Received Thanks: 25
thanks from me =]
Beitarist is offline  
Old 09/03/2008, 14:54   #3
 
syntex's Avatar
 
elite*gold: 46
Join Date: Mar 2006
Posts: 2,589
Received Thanks: 1,198
Danke Redox das du auf mich gehört hast. Macht mehr Sinn hier für leute die noch gehirn haben

Ist aufjedenfall nützlich! .. mein Thanks haste!
syntex is offline  
Old 09/03/2008, 15:24   #4
 
elite*gold: 0
Join Date: Aug 2008
Posts: 367
Received Thanks: 43
n1, dann muss ich mein Gehirn wohl mal wieder anstrengen =P
Jake Tyler is offline  
Old 09/03/2008, 15:45   #5
 
elite*gold: 20
Join Date: Apr 2008
Posts: 820
Received Thanks: 177
Code:
procedure Decrypt_PServer(pDatFile, pNewMem, dwSize: DWOrd);
var
  local2, local3, tmp: Byte;
begin
  local2 := 1;
  local3 := 0;
  while dwSize <> 0 do
  begin
    tmp := CryptTable2[local2];
    local3 := (local3 + tmp) and ;
    CryptTable2[local2] := CryptTable2[local3];
    CryptTable2[local3] := tmp;
    pByte(pNewMem)^ := pByte(pDatFile)^ xor CryptTable2[(CryptTable2[local2] + CryptTable2[local3]) and ];
    inc(local2);
    inc(pDatFile);
    inc(pNewMem);
    dec(dwSize);
  end;
end;

wow, ich verstehs
dachte das der 0815 Informatik Unterricht in der Schule nichts bringt xD
chibis is offline  
Old 09/03/2008, 18:20   #6
 
StickyIcky's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 2,151
Received Thanks: 328
Quote:
Originally Posted by rEdoX View Post


const CryptTable2: array[0..255] of byte = (
spass muss sein ^.^
StickyIcky is offline  
Old 09/03/2008, 19:42   #7
 
elite*gold: 0
Join Date: Aug 2008
Posts: 37
Received Thanks: 3
und was kann man damit machen....
XBPXTAGS is offline  
Old 09/03/2008, 20:23   #8
 
rEdoX's Avatar
 
elite*gold: 20
Join Date: Jan 2006
Posts: 539
Received Thanks: 228
Quote:
[Source]KOCP SE 2.16.50-0321 DAT-Files entschluesseln
Niveau ist hier also immer nich eine Handcreme.
rEdoX is offline  
Thanks
2 Users
Old 09/04/2008, 11:08   #9
 
niKe's Avatar
 
elite*gold: 0
Join Date: Feb 2006
Posts: 1,099
Received Thanks: 163
SO WHUT?
niKe is offline  
Old 09/04/2008, 17:24   #10
 
elite*gold: 20
Join Date: Apr 2008
Posts: 820
Received Thanks: 177
redox, könnteste pls dein pkchanger v2 neu uploaden? alten links funzen nich ..

danke
chibis is offline  
Old 09/04/2008, 17:52   #11
 
Dreckvieh's Avatar
 
elite*gold: 20
Join Date: Nov 2007
Posts: 1,380
Received Thanks: 147
Quote:
Originally Posted by chibis View Post
redox, könnteste pls dein pkchanger v2 neu uploaden? alten links funzen nich ..

danke
Gooooogle einfach!!!! mal irgeneiner wird das auch shcon irgendwoanders hochgeladen haben man ey
Dreckvieh is offline  
Old 09/04/2008, 18:02   #12
 
elite*gold: 20
Join Date: Apr 2008
Posts: 820
Received Thanks: 177
ich würde nicht fragen wenn ich schon nicht gegoogelt hätte
chibis is offline  
Old 09/04/2008, 18:30   #13
 
Dreckvieh's Avatar
 
elite*gold: 20
Join Date: Nov 2007
Posts: 1,380
Received Thanks: 147
Quote:
Originally Posted by chibis View Post
ich würde nicht fragen wenn ich schon nicht gegoogelt hätte
Tja da haste Pech oder suchst weiter in Google ^.^
Dreckvieh is offline  
Old 09/04/2008, 19:12   #14
 
rEdoX's Avatar
 
elite*gold: 20
Join Date: Jan 2006
Posts: 539
Received Thanks: 228
Ich bekomm schon wieder das kotzen in diesem bereich.

1 min google:



Desweiteren gibt es schon eine dritte version die, wie die ersten beiden auch, noch immer auf meinem ftp liegt.
rEdoX is offline  
Old 09/04/2008, 19:12   #15
 
StickyIcky's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 2,151
Received Thanks: 328
hatte das ma im forum von bloodx geladen aber hmpf hab link netmehr
StickyIcky is offline  
Reply


Similar Threads Similar Threads
Need Metin2 Old Source files
08/24/2010 - Metin2 Private Server - 0 Replies
Can SOmeone gave me the old Metin2 Source File. I use to have it but since my PC spoilt I have lost all the files including the Old Metin2 Source files. I will be appriciate if someone kind enough to pass me the old metin2 source files. Many Thanks To those who willing to pass me the Old MEtin2 SOurce files
source files
11/09/2008 - CO2 Private Server - 0 Replies
i got my server to work via Easy Conquer Private Server Set Up. I dont want a public server i want a very private server set up like the real co, where you lvl have drops ect. This will be for a handfull of ppl only so we can enjoy conquer again. the only thing i want changed is the drop rates and to in game line code items. Does anyone have the source code to do this, i am in college for programming and am pretty sure i can make it work i just can't code it. Thanks
[TOOL] Encrypt DAT-Files protected by KOCP SE 2.16.50-0321
11/26/2007 - Kal Online - 36 Replies
Mit diesem tool kann man sich die DAT-Files von privat server die mit KOCP SE 2.16.50-0321 geschuetzt anzeigen lassen. Dazu einfach die *.dat auf die exe ziehen, config.pk oder e.pk auswaehlen und schon befindet sich eine *.txt datei im gleichen ordner wie die *.dat datei. Getestet auf: Ancient Download: home.arcor.de/foobaar/Encrypt.rar
lineage 2 c4 source files?
12/30/2005 - Lineage 2 - 0 Replies
does anybody have the lineage 2 c4 source files



All times are GMT +2. The time now is 14:29.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.