Jump to content

Recommended Posts

Posted (edited)

We are Glad to announce the Lineage 2 BurN. Gracia Final Mid Rate server!
Take a look at our features and gather your friends and come play!


Facebook:
https://www.facebook.com/LineageBurN/
Site:
https://www.L2BurN.com

Forum:

http://www.l2burn.com/forum/

 


Rates and Features: 


Xp/sp: 30x
Adena: 15x
Drop/spoil: 5x
Seal Stone: 2x ( Saints Necropolis 80+ )
Raid Boss Normal drop : 5x + Event Coin 
Raid Boss Normal exp/sp: 10x
Epic Raid Boss drop : 1x (jewels epic ) 3x (items )
Knight epaulets drop: 3x (10-30 each guard)


=== Quest ===


Quest for recipe grade A and S: 3x drop (50% chance)


=== Game info ===


Max lvl 85
Subclass max lvl 85
Blue spoil
Auto loot from mobs
Offline shop
Champion mobs
Craft system retail
VIP system (+50% xp/sp)
Announcement for boss and Epic spams.
Only 1 clan for alliances ( max 40 players in each clan)
Hellbound and Tiat only in January

Siege and Territory war every weekend
Buff slot 25+4/12
Mana drug (Regen 100mana per sec)
Barakiel last hit party nobles
Events: TVT, DM, LM
Olympiad 15/15 with weapon hero working
Tiat non-instance
No Commons items 
GM shop until grade b
NPC buff (1h)
Weapon buff ( to rebuff outside Town)
Jobs without quest
More than 70 bosses with extra drop (Event coin)
NPC exchange (quest items for recipes)
NPC event ( event coin for a lot of items )
Forgotten scroll only by Olympiad, event and Epic boss
Twins instance 85
Gk facilitator to many places


=== Others information ===


- Core and Orfen Epic Jewel usable
- Song, dance, and summons usable in PvP/farm
- Cancel formula each skill cancel 3 with 10s reuse
- First heros 15/12
- Balances donate with Fair prices


=== Boss ===


Core 16h + 30minutes
Orfen 24 + 30 minutes
Queen Ant 48+ 30minutes
Zaken 72 + 30 minutes (door always open)
Frinteza 4daya + 60 minutes
Baium 5 days + 60 minutes 
Antharas 10 days + 30 minutes
Valakas 10 days + 30 minutes
Beleth 7 days +10 minutes 
Barakiel 16h + 10 minutes( each week the Spawn time go lower)
Ketra and varka raid boss 16h + 10 minutes
Others bosses 16h + 10 minutes
All boss have they level at 83
Don't miss it


Open beta 25/11. 12:00 -3GMT


Grand opening 02/12 12:00 -3GMT

 

 

 

 

Movie from our partner MH Studio 

 

 

 

Edited by AdmSync

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • I open the l2j server and see 1. XOR->NewCrypt.encXORPass(raw, offset, size, Rnd.nextInt()); ---> xor everything is clear 2. _staticCrypt.crypt(raw, offset, size); -----> private void encryptBlock(byte[] src, int srcIndex, byte[] dst, int dstIndex) { int xl = bytesTo32bits(src, srcIndex); int xr = bytesTo32bits(src, srcIndex + 4); xl ^= P[0]; for (int i = 1; i < ROUNDS; i += 2) { xr ^= func(xl) ^ P[i]; xl ^= func(xr) ^ P[i + 1]; } xr ^= P[ROUNDS + 1]; bits32ToBytes(xr, dst, dstIndex); bits32ToBytes(xl, dst, dstIndex + 4); }   I scroll down the code and see this code   ----->>> /**      * Decrypt the given input starting at the given offset and place the result in the provided buffer starting at the given offset. The input will be an exact multiple of our blocksize.      * @param src      * @param srcIndex      * @param dst      * @param dstIndex      */     private void decryptBlock(byte[] src, int srcIndex, byte[] dst, int dstIndex)     {         int xl = bytesTo32bits(src, srcIndex);         int xr = bytesTo32bits(src, srcIndex + 4);         xl ^= P[ROUNDS + 1];         for (int i = ROUNDS; i > 0; i -= 2)         {             xr ^= func(xl) ^ P[i];             xl ^= func(xr) ^ P[i - 1];         }         xr ^= P[0];         bits32ToBytes(xr, dst, dstIndex);         bits32ToBytes(xl, dst, dstIndex + 4);     }   ===================================================   I'm transferring this code to C# private void decryptBlock(byte[] src, uint srcIndex, byte[] dst, uint dstIndex)    {        uint xl = BytesTo32bits(src, srcIndex);        uint xr = BytesTo32bits(src, srcIndex + 4);        xl ^= P[ROUNDS + 1];        for (int i = ROUNDS; i > 0; i -= 2)        {            xr ^= F(xl) ^ P[i];            xl ^= F(xr) ^ P[i - 1];        }        xr ^= P[0];        Bits32ToBytes(xr, dst, dstIndex);        Bits32ToBytes(xl, dst, dstIndex + 4);    }   And in c# I first do decryptBlock and then XOR and everything works, I get the package and the first 2 bytes have already been removed as far as I remember   This only works for the login server.  
    • Ask him what you know, and what I know hahaha.
    • https://prnt.sc/2G_hOHfUIGLM   not sure what you mean Teddy boi  
    • Hello first of all thank you for your prompt response and the time you are taking to read this and answer, I am aware that not everyone takes the time and for that I thank you. On the other hand the specific problem is when decrypting this package and being able to parse it,  In some places it says that it is only encrypted with xor, in others that only a static blowfish is used and in others that both are used in the order of xor and then blowfish, this is the problem in spite of being able to see the encryption mechanisms of the servers, I can not put together the function that reverses this encryption to obtain the keys sent by the init packet.   Thanks for your time, hopefully the rest can contribute something because it is a super useful module to extend any functionality to the client and I will publish it in an opensource way when it is finished.
  • Topics

×
×
  • Create New...