Jump to content

Recommended Posts

Posted
  On 9/20/2010 at 7:38 PM, DragonHunt0r said:

The only reason l2j has to work for 6 years at ther project is because they just started when lineage2 came out and that was at chronicle 1

And yes we are not stealing any l2j code except ther blowfish encryption because those are 1024bytes and i don't wanna reverse engineering those bytes if they are just in the l2j source, you can watch the svn if you want

 

For now our goal is getting ingame so fast as possible and then working at running/talking ingame etc...

I say that cause i see people here think that in 1-2 months they will can run the server...
Posted
  On 9/20/2010 at 7:38 PM, DragonHunt0r said:

The only reason l2j has to work for 6 years at ther project is because they just started when lineage2 came out and that was at chronicle 1

And yes we are not stealing any l2j code except ther blowfish encryption because those are 1024bytes and i don't wanna reverse engineering those bytes if they are just in the l2j source, you can watch the svn if you want

 

For now our goal is getting ingame so fast as possible and then working at running/talking ingame etc...

hey dude why dont you convert those codes from l2j it will make your job more easier and then start improving the chronicle functions + fix bugs etc with these way you can espace 3 years work

Posted
  On 9/20/2010 at 7:40 PM, Sniffer* said:

hey dude why dont you convert those codes from l2j it will make your job more easier and then start improving the chronicle functions + fix bugs etc with these way you can espace 3 years work

lol thats just dumb and everyone can download a converter and converting a whole java project in anything they want

Working at a project is for fun and not by using some converter and getting all the poor performance l2j has

Posted
  On 9/20/2010 at 7:35 PM, Sniffer* said:

look guys they will convert java to C just they this pack will be less exploitable so :X and lets see what will come omg dont be so pathetic dudes

converting doesnt mean less exploits or something similar plus coding stuff on C++ is harder than java

 

the l2j engine wasnt made by 30 ppl.. simple from 2 or 3 ppl so creating such emulator on c++ isnt that hard if they know how to do it..so stop flaming them just wait till they finish it then we will see the result

 

btw guys why do you even compare l2j with any other public/private project? l2jserver is a free public project? isnt it? they are doing it for fun not for money.. pay them some xxxxK euros and you will see a full retail like l2j emulator... lmao

 

the only i can say is Good Luck

 

Posted

ok so... i was having some fun using the //setdex command because it also controlled the movement speed of the character and ye.. i just putted my dex to like 2000000000 and this is what happened lol

i was just jumping around in the sky haha XD

 

shot00019dg.png

Posted
  On 9/24/2010 at 6:31 AM, Matim said:

Because max supported value is 99.

bad to hear such things from a "L2J Developer" the max supported value isnt 99 his speed goes to - values because the max supported value is ~2.147billions and since his dex is 2billions and 1 dex gives about 2 speed then hes speed should be about 4billions in Long.. if he change the integer to long his speed will be 4bills

 

((2000*2)-2147)*1000000= ~his speed

 

  Quote

ok so... i was having some fun using the //setdex command because it also controlled the movement speed of the character and ye.. i just putted my dex to like 2000000000 and this is what happened lol

i was just jumping around in the sky haha XD

 

shot00019dg.png

set your attack speed to 2billions and attack any npc :) hope your home wont explode :D :D :D
Posted
  On 9/24/2010 at 6:31 AM, Matim said:

Because max supported value is 99.

the supported value can go upto like 4 billion its just l2off that goes till 99 but that doesn't say it does not go any higher then 99

the smallest data type is like 255 as byte

It's just a simple calculation to get the speed...

(Base Speed * DEX)Buffs + Armor Bonus + passives if you didn't knew

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

    • Works Sure of Intelude C6! This script is used to modify the login and game server ports inside engine.dll without requiring any changes in l2.ini. The modification happens directly within the binary data of engine.dll, ensuring that the client connects to the new ports.   Python Script:   import os # New Ports NEW_PORT_2106 = 8888 # Login Server 8888 NEW_PORT_7777 = 9999 # Game Server 9999 # Μετατροπή σε HEX (Little Endian) OLD_HEX_2106 = bytes.fromhex("3A 08") # 2106 NEW_HEX_2106 = NEW_PORT_2106.to_bytes(2, "little") OLD_HEX_7777 = bytes.fromhex("61 1E") # 7777 NEW_HEX_7777 = NEW_PORT_7777.to_bytes(2, "little") # DLL with open("engine.dll", "rb") as f: dll_data = f.read() # Replace dll_data = dll_data.replace(OLD_HEX_2106, NEW_HEX_2106, 6) dll_data = dll_data.replace(OLD_HEX_7777, NEW_HEX_7777, 8) # Save New DLL with open("engine.dll", "wb") as f: f.write(dll_data) print(" New DDL save as 'engine_patched.dll'") print(f" - Login Server Port: {NEW_PORT_2106} (Your New Port)") print(f" - Game Server Port: {NEW_PORT_7777} (Your New Port)") print(" Replace engine.dll with a new!") What This Script Does Defines New Ports Login Server: Changes the default port 2106 to 8888. Game Server: Changes the default port 7777 to 9999. You can change these values to any ports you want!  Converts Ports to HEX Format (Little Endian) 2106 → 3A 08 (old) → Converted to 8888 (22 22 in HEX). 7777 → 61 1E (old) → Converted to 9999 (0F 27 in HEX). Reads engine.dll Opens engine.dll in binary mode and loads its content. Replaces Old Port Values with the New Ones Finds hexadecimal values representing the old ports inside engine.dll and replaces them with the new ones. Replaces 6 occurrences of 2106 and 8 occurrences of 7777. Saves the Modified DLL Writes the updated data back into engine.dll, effectively patching it. Prints Confirmation Messages Confirms that engine.dll has been patched successfully. Displays the new port values.   No need to modify l2.ini since the changes are applied directly inside engine.dll. Works automatically without requiring manual editing of the client files. Ensures correct connection ports for the Lineage 2 client.   Run the script to patch engine.dll. Replace the old engine.dll with the patched one in the Lineage 2 system folder. Launch the client—it will now connect to the new ports (8888 for login and 9999 for game server).
    • I have much more than you think, when I see someone reselling my files, I will publish them as happened with the criminal Unklonsoldier (Mariano Canteros). gg ultra
    • Does anyone have the patch as they removed it? I want to take some features.
    • L2 WINS - HTML DESIGN     
  • Topics

×
×
  • Create New...