Jump to content

Recommended Posts

Posted

Και καλά όλοι οι μήνες έχουν τουλάχιστον 28 μέρες.

 

 

Το 25 όμως, από πού προήρθε;

Posted

Και καλά όλοι οι μήνες έχουν τουλάχιστον 28 μέρες.

 

 

Το 25 όμως, από πού προήρθε;

kapou to eida oute egw 3erw :P

 

rwra ton phoenix p to brhke :D

Posted

Και καλά όλοι οι μήνες έχουν τουλάχιστον 28 μέρες.

 

 

Το 25 όμως, από πού προήρθε;

 

1) Popo ma tin Panagia kai ton Xristo oti pio olithio exw akusei POTE stin zwh m.MA TIN PANAGIA

 

2) Oeo?Mallon o Flaming i pws sto diaolo ton lene, kserei kala mathimatika

 

lol dn to katalaves?

 

den rwtise pioi mines exoun mexri 28 meres, rwtise posoi exoun 28 meres asxeta an einai 28-30-31 ktlp

 

itan erwtisi pagida

 

Erwtisi @@@dia itan..

Posted

Το 25 όμως, από πού προήρθε;

 

Όντως.

Ζητώντας να διαιρεθεί κατά το ήμισύ του, ζητάς να διαιρεθεί με το 15 (το μισό του).

Το αποτέλεσμα θα είναι 2.

Προσθέτοντας 10 θα φτάσει το 12, άρα;

 

1) Popo ma tin Panagia kai ton Xristo oti pio olithio exw akusei POTE stin zwh m.MA TIN PANAGIA

 

Ηλήθιο;

Εφόσον ισχύει, αμφιβάλλω.

Posted

lol dn to katalaves?

 

den rwtise pioi mines exoun mexri 28 meres, rwtise posoi exoun 28 meres asxeta an einai 28-30-31 ktlp

 

itan erwtisi pagida

Nai :D

autos akoma na to katalabei.

 

Όντως.

Ζητώντας να διαιρεθεί κατά το ήμισύ του, ζητάς να διαιρεθεί με το 15 (το μισό του).

Το αποτέλεσμα θα είναι 2.

Προσθέτοντας 10 θα φτάσει το 12, άρα;

 

Ηλήθιο;

Εφόσον ισχύει, αμφιβάλλω.

afou k sto quiz p to eida 25 elege plk m kaneis?
Posted

afou k sto quiz p to eida 25 elege plk m kaneis?

 

ΟΚ, πάω να δηιουργήσω ένα blog που θα γράφω πως αύριο θα καταστραφεί η Γη, και ευελπισθώ να το πιστέψεις.

Posted

Popo Thee m...Xrisimopoihse tin logiki s palikari m, oxi ena quiz >.>

 

Twra dn kserw an prepei na klapsw gia aytin tin mlkia poy akusa i an prepei na gelasw epidi to exete kapsei entelws...

Posted

Popo Thee m...Xrisimopoihse tin logiki s palikari m, oxi ena quiz >.>

 

Twra dn kserw an prepei na klapsw gia aytin tin mlkia poy akusa i an prepei na gelasw epidi to exete kapsei entelws...

kala esi efages to ban k apo tote egines o klapsas tou forum.
Posted

Popo Thee m...Xrisimopoihse tin logiki s palikari m, oxi ena quiz >.>

 

Twra dn kserw an prepei na klapsw gia aytin tin mlkia poy akusa i an prepei na gelasw epidi to exete kapsei entelws...

klaps klaps

 

r mlka bale to mualo s na doulepsei swsta eine pfff.

Posted

kala esi efages to ban k apo tote egines o klapsas tou forum.

 

Mpa, apla m aresei na tin lew se xaza pedakia...Tespa, dn anoigw thema gt tha tapwsw pali kanenan kai dn goustarw

 

lock this shit

 

PS. Kante kai alla tetoia ilithia topics gia adena >.>

Guest
This topic is now closed to further replies.


  • Posts

    • I have this question.  Wich is the first byte?  
    • 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.
  • Topics

×
×
  • Create New...