Register for your free account! | Forgot your password?

You last visited: Today at 06:23

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

Advertisement



[req] Item Decryptor

Discussion on [req] Item Decryptor within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
[req] Item Decryptor

So guys someone have a item decryptor working with old patches? I mean patches like 4267 or lower?
I really need one.


Thanks
L1nk1n*P4rK is offline  
Old 03/30/2010, 06:11   #2
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Afaik the one released works.
Correct me if I'm wrong.
Arcо is offline  
Old 03/30/2010, 06:15   #3
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
A link?
I mean I did not was very active in the last year on e*pvp :P
SO idk who is Afaik
L1nk1n*P4rK is offline  
Old 03/30/2010, 06:19   #4
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Afaik is an acronym meaning "as far as I know."
And search for MakenWeapons.
There should be a thread by DragonStar with the decryptor attached.
Arcо is offline  
Old 03/30/2010, 06:26   #5
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
Lol owned o.o


I will search it but i'm not sure if will work....
L1nk1n*P4rK is offline  
Old 03/30/2010, 06:28   #6
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Arcо is offline  
Old 03/30/2010, 06:38   #7
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
Is not working...
Pfff
Kovacs I know you have one!
PM me a download link
You someone else :P
L1nk1n*P4rK is offline  
Old 03/30/2010, 06:42   #8
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by L1nk1n*P4rK View Post
Is not working...
Pfff
Kovacs I know you have one!
PM me a download link
You someone else :P
Are you sure you used it correctly?
Arcо is offline  
Old 03/30/2010, 06:48   #9
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
Ya lol -.-
I know how to use it
I was been use it long time ago on ShadowCo... so I have so problems with it....
But is not working on old version.......
L1nk1n*P4rK is offline  
Old 03/30/2010, 07:44   #10
 
© Haydz's Avatar
 
elite*gold: 20
Join Date: Jan 2008
Posts: 1,042
Received Thanks: 252
It wasn't encrypted in the earlier clients AFAIK (4267 etc), it was just in binary format. - "C# BinaryReader".

If nobody's posted one when I wake up, I'll do it for you, going sleepy now though.
© Haydz is offline  
Thanks
1 User
Old 03/30/2010, 15:04   #11
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
Thanks Haydz
L1nk1n*P4rK is offline  
Old 03/30/2010, 17:52   #12


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,125
Received Thanks: 2,518
PHP Code:
            FileStream File = new FileStream(Constants.ItemTypePathFileMode.Open);
            
BinaryReader Reader = new BinaryReader(File);

            
uint Amount Reader.ReadUInt32();

            
ItemDetail _IDetail;

            for (
int i 0Amounti++)
                
Reader.ReadUInt32();

            for (
int i 0Amounti++)
            {
                
_IDetail = new ItemDetail();
                
_IDetail.ID Reader.ReadUInt32();
                for (
int x 016x++)
                {
                    
_IDetail.Name += (char)Reader.ReadByte();
                }
                
_IDetail.Name _IDetail.Name.Trim('\0');
                
_IDetail.Class = Reader.ReadByte();
                
_IDetail.Prof Reader.ReadByte();
                
_IDetail.Level Reader.ReadUInt16();
                
_IDetail.Vit_Req Reader.ReadUInt16();
                
_IDetail.Str_Req Reader.ReadUInt16();
                
_IDetail.Dex_Req Reader.ReadUInt16();
                
_IDetail.Spi_Req Reader.ReadUInt16();
                
_IDetail.TradeType = (byte)Reader.ReadUInt32();
                
_IDetail.Price Reader.ReadUInt32();

                
File.Seek(4SeekOrigin.Current);

                
_IDetail.Damage_Max Reader.ReadUInt16();
                
_IDetail.Damage_Min Reader.ReadUInt16();
                
_IDetail.Defense_Add Reader.ReadUInt16();
                
_IDetail.Dex_Add Reader.ReadUInt16();
                
_IDetail.Dodge_Add Reader.ReadUInt16();
                
_IDetail.HP_Add Reader.ReadUInt16();
                
_IDetail.MP_Add Reader.ReadUInt16(); ;
                
_IDetail.Dura Reader.ReadUInt16();
                
_IDetail.MaxDura Reader.ReadUInt16();
                
_IDetail.Magic_Attack Reader.ReadUInt16();
                
_IDetail.MDefense_Add Reader.ReadUInt16();

                
File.Seek(6SeekOrigin.Current);

                
_IDetail.Range = (byte)Reader.ReadUInt16();
                
_IDetail.Frequency Reader.ReadUInt16();

                for (
int x 016x++)
                {
                    
_IDetail.Description += (char)Reader.ReadByte();
                }

                
_IDetail.Description _IDetail.Description.Trim('\0');

                if (!
_Itemdata.ContainsKey(_IDetail.ID))
                    
_Itemdata.Add(_IDetail.ID_IDetail);

                
File.Seek(112SeekOrigin.Current);
            } 
Korvacs is offline  
Thanks
1 User
Old 03/30/2010, 21:10   #13
 
L1nk1n*P4rK's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 303
Received Thanks: 39
Thanks Kov I will try this script.
But also I have made an C# project to Read the .dat file.

And was a 60% success I mean:
1) The File was been loaded.
2) The Console was created a file with the itemtype

But How I how to revers it back?
To remake it .dat again?
L1nk1n*P4rK is offline  
Old 03/31/2010, 00:41   #14


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by L1nk1n*P4rK View Post
Thanks Kov I will try this script.
But also I have made an C# project to Read the .dat file.

And was a 60% success I mean:
1) The File was been loaded.
2) The Console was created a file with the itemtype

But How I how to revers it back?
To remake it .dat again?
BinaryWriter If you know the exact structure, you just have to rewrite it.
CptSky is offline  
Old 03/31/2010, 03:56   #15
 
elite*gold: 0
Join Date: Feb 2010
Posts: 129
Received Thanks: 30
Quote:
Originally Posted by L1nk1n*P4rK View Post
Thanks Kov I will try this script.
But also I have made an C# project to Read the .dat file.

And was a 60% success I mean:
1) The File was been loaded.
2) The Console was created a file with the itemtype

But How I how to revers it back?
To remake it .dat again?
Here
Scaned it with AVG and said it has no virus
Attached Files
File Type: rar DatCryptor.rar (4.4 KB, 9 views)
Øblivion is offline  
Reply


Similar Threads Similar Threads
< request> <Dat decryptor>
02/02/2009 - Conquer Online 2 - 2 Replies
Can someone give me a dat decryptor for item type couse i deleted mine by mistake.... Thx in advance;)
Decryptor Encryptor
04/21/2008 - General Coding - 2 Replies
I have yet to find out if any other games .dat file may be decrypted. I need to find what games are compatiable with this program. http://www.elitepvpers.com/forum/co2-exploits-hack s-tools/44730-easy-monster-dat-encrypter-decrypter .html If you are getting a readable decrypted.txt file for that certain game's .dat please post here the game that it is compatiable with. Thank you
need itemname-e decryptor
12/11/2006 - Lineage 2 - 1 Replies
i want to decrypt c5 :) anybody can share any decryptor? ty
l2 ini decryptor
10/30/2004 - Lineage 2 - 1 Replies
hey does anyone one know were i can find the l2 ini decryptor?



All times are GMT +2. The time now is 06:23.


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.