L2 C6 Init Packet (and others)

Find the proper support area, Saga-Version.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Akasei
Posts: 3
Joined: Tue Mar 12, 2013 9:01 am

L2 C6 Init Packet (and others)

Post by Akasei »

I want to create my own LoginServer just for my own sake (GameServer will be too). I know thing or two about how it works from http://fursoffers.narod.ru/Packets.htm and http://code.google.com/p/l2adenalib/wik ... erProtocol so...

I recive few packets from LoginServer (successful login)

Code: Select all

Packet 1:00000000  BA 00 A9 2A 61 A3 23 E2  91 9A A9 00 12 84 7D C300000010  0D 1E EA DB 6A F6 EF B0  B1 C1 CB D9 19 43 32 1900000020  D6 B9 F1 9D 2B D1 03 61  EF B4 3B EB 98 B3 05 2600000030  99 6B 37 92 E6 CD 4F 26  02 DA FE 78 D0 83 CE 2B00000040  2E D4 DE 13 48 DB FF 70  ED 0B 98 9F 67 25 BE EC00000050  40 54 2A 7F C1 3A A6 53  5D 44 7A FB 66 9E 9C CD00000060  05 97 59 59 9C C3 A2 EC  4A D1 BC 9A 60 5A 8C 0000000070  24 EE BE 96 38 68 88 75  4F 22 43 53 95 1C E7 6B00000080  2D 83 99 20 FB 0B 31 77  11 E9 23 2B AB D2 F5 6000000090  BD A9 D1 8E C9 60 3D 41  8F A2 DF 20 85 A5 7B CA000000A0  66 DA B9 0B 24 DE 21 92  86 F8 51 37 9B 1D DC BA000000B0  85 32 39 AF EB D0 D9 05  D8 27 Packet 2: 000000BB                                 22 00 44 8C 20 09000000C0  9E BF 31 E7 1B D3 92 15  0B 06 16 92 DA 82 73 B2000000D0  70 17 6B 6D 77 BE 1B 5E  BE 2D 13 AA Packet 3: 000000DC                                       12 00 41 A6000000E0  D6 88 BA B9 ED 17 5F 61  78 BF 6F 99 97 10
I know that first packet is Initial form LoginServer, second and third... unknown for me (at now).

Is there someone, who have enough free time to tell me step by step what to do with examples based on my packets?

Thank You :)
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: L2 C6 Init Packet (and others)

Post by jurchiks »

Why don't you read L2J IL branch code and find out yourself?
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Akasei
Posts: 3
Joined: Tue Mar 12, 2013 9:01 am

Re: L2 C6 Init Packet (and others)

Post by Akasei »

jurchiks wrote:Why don't you read L2J IL branch code and find out yourself?
I don't understand Object Programming, Java and HLL :D ... only assembler.

But lets try...

Code: Select all

Packet 3: 000000DC                                       12 00 41 A6000000E0  D6 88 BA B9 ED 17 5F 61  78 BF 6F 99 97 10
1. To decode this packet i need send it via Blowfish Decrypt, true?
2. Remove first 2 bytes "12 00" and decode other, true?
3. "41 A6 D6 88 BA B9 ED 17 5F 61 78 BF 6F 99 97 10" decrypt via Blowfish key (interlude static key) "6B 60 CB 5B 82 CE 90 B1 CC 2B 6C 55 6C 6C 6C 6C", true?


Can someone tell me the website where i can decrypt this packet online?
Everything what i foundis to select decrypt/encode MODE, how to do this?

No one>?
Post Reply