Jump to content

Recommended Posts

Posted (edited)

It not works like this, the profits of administrator/owner are automatically colected at the end of the purchase as a tax.

There is always a way to exploit a system, people will work around it and find a way. maybe not directly on the system but they gonna go old school skype+pp method for instance

Edited by Snoopi
Posted

what acutaly happened with the spam team section?? haha

these pictures remind me of good times :D

i wanna lurk through these sections again!!

 

 

welcome chucky :P

Posted

I need my Spam-Glasses to read this topic.Admin should clean and delete such topics,community goes full retard with talking no-sense,spam and finally starting fight between each other.What's wrong with forum's community?

Posted

I need my Spam-Glasses to read this topic.Admin should clean and delete such topics,community goes full retard with talking no-sense,spam and finally starting fight between each other.What's wrong with forum's community?

 

5 posts, what are you a newborn? you are tellin me that you need your spam-glasses to read this topic but you do actually spam by answering on meaningless things right now.

Posted

I need my Spam-Glasses to read this topic.Admin should clean and delete such topics,community goes full retard with talking no-sense,spam and finally starting fight between each other.What's wrong with forum's community?

 

Hello, who are you?  :kappa:

 

haven't hered that name in a while haha

 

hey :D

 

so rename it back:) maxtor probably will add the spam section you said  :goodbless:

Posted

Hello, who are you?  :kappa:

 

 

so rename it back:) maxtor probably will add the spam section you said  :goodbless:

 

Actually spam section is replaced with this one,  :not bad:

Posted (edited)

Maxtor, you should define EXACTLY what "should be" MaxCheaters community and subjects. It looks like you got no real idea, notably when you speak about doing a second community MaxHacker (which probably will get most of existing sections from here).

  • If you aim to make forums specialized in a particular subject (in this particular case of MxC, L2) it follows the actual community of the game. Actually there is nothing "wrong" with your actual audience, like I said higher. The community of L2 moved mainly to BR and RU, the game in RU you can still find private servers with 1k players (aCis got so far at least 2 running servers with 1k ppl, and my main monkey lab makes between 150-500 on server relaunch).
  • If your point is to specialize in emulator developement, you have to add plenty of areas.
  • If your point is to add new community of gamers, the minimum is to add successful games (and for that, simply see Twitch.tv : dota2, lol, hearthstone, H1Z1:KOTH, Overwatch, etc), make them "main" (and not simply a side-subforum) and make active things on it (news of extensions/edits, hints/tutorial, tournaments (involving money or not). A twitch TV with an animator ?

A community forums can't simply be created and live by its own, you have to decide to gather more people and create content to make people login to forums.

 

As a personal opinion, I find you "don't care" enough ; you opened such topic in 2011, 2013 and now 2017 (more or less) and in 6y no specific unique content, found only on MxC, has been made.

 

----

 

About L2 / L2J in particular, you can't have a better audience, except if you decide to learn russian or brazilian.

Edited by Tryskell
Posted (edited)

i think that spam section is still there. but only visible for the admin (how ells he got those pictures)

im pretty sure he did not delete all the topics&posts.

Edited by Tessellate
Posted

i think that spam section is still there. but only visible for the admin (how ells he got those pictures)

im pretty sure he did not delete all the topics&posts.

 

nothing is deleted  :feelsgoodman:

Posted

Maxtor, you should define EXACTLY what "should be" MaxCheaters community and subjects. It looks like you got no real idea, notably when you speak about doing a second community MaxHacker (which probably will get most of existing sections from here).

  • If you aim to make forums specialized in a particular subject (in this particular case of MxC, L2) it follows the actual community of the game. Actually there is nothing "wrong" with your actual audience, like I said higher. The community of L2 moved mainly to BR and RU, the game in RU you can still find private servers with 1k players (aCis got so far at least 2 running servers with 1k ppl, and my main monkey lab makes between 150-500 on server relaunch).
  • If your point is to specialize in emulator developement, you have to add plenty of areas.
  • If your point is to add new community of gamers, the minimum is to add successful games (and for that, simply see Twitch.tv : dota2, lol, hearthstone, H1Z1:KOTH, Overwatch, etc).

A community forums can't simply be created and live by its own, you have to decide to gather more people and create content to make people login to forums.

 

 

twitch.tv can provide you with usefull information such as most playable games over the net, but when its about forum, you refer to other type of audience. 

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...