Jump to content

Recommended Posts

Posted (edited)

Van Persie :<

 

Van persie is a different person, He is Vorfin the biggest cancer all around, im `Romeo if u dont know me ask bout me.

Edited by Sawadee
Posted

Almost forgot this forum still exists :D since I quit playing L2

 

You don't just quit L2, you just take a break for indefinite period

Posted (edited)

If you folks could simply stop reinventing hot water in here, you'd prob make a step forward.

You stick to the term "Lineage 2" like there's no other game out there.

 

There's 4 Lineage games I know so far. It's a niche, it's not a fucking came-went-away in a week game, like bromeo's L2j crap servers he used to make with his scammer fatso friend.

 

Lineage
Lineage II

Lineage Revolution, which is kind of epic if you like playing mobile games. Still in Korean though. Been playing it for a few days. Got 2 chars, 31 & 37 lvl.

Lineage Eternal

 

By simply making a fucking blog you'd be able to get a fuckton of traffic and bank on random ad networks out there, simply mentioning the niche keyword.

You could probably hire a nigger or Indian stinker on fiverr, pay him 5 dwollas for a 500 word article.

 

-

 

I fucking hated the old forum. There was a lot of scammers. No one would give a fuck about issues such as this one, not even Maxtor.

There was a lot of annoying people who were self entitled for whatever fuck reason they thought they are. That was probably small dick complex, imo. You can hide a small dick online by pretending you're smarter than others.

 

Maxtor, as an admin (not even sure if he's got any dev skills, but anyway, let's call him admin for now), gave way too many rights to arrogant people to bash the non-bright users of the site, by giving them mod, avoiding to ban some of them because they were friends of a friend of a friend, etc.

 

Look at dask's and romeo's posts. Maxtor is tolerating that shit even if it's in his own "positive" topic.

As long you're allowing that kind of behavior on your own ground, you wont go far.

You lived in a hype which brought you some money. Hypes die.

 

/rant_off

 

psoma ton pairneis, thelw btc gia goldmoney

Edited by DTT
Posted (edited)

Anyway. Here's what I'd suggest you do, if you want to "save" the community and earn some extra jewros.

 

Drama brings people back. Corner all that drama in just 1 section. Put a fuckton of ads in there. Punish everyone else who brings drama outside of this section by not allowing them post messages for days.

 

This forum is a tool for communication. You pay for your internet to communicate with someone though X or Y app/site.

So why not "charge" advertisers on retard spammer's actions who'll be fueling 1 section?

 

Launch a blog, post at least 1-2 articles per month about MMOs. MMOs sell. (See suggestion in above post on howto "posts")

 

I'm into bitcoin niche for the last 3.5 years. Open a cryptocurrency section. You're not cavemen from Africa, you live on a civilized continent who's into technology and could probably benefit a lot, simply by sharing content about cryptocurrencies, blockchain and other stuff.

 

The real juice is in e-mail lists. Find a cheap mail server and blast a mail once per month, at least

 

If you want a serious forum, which will have a future, you and your moderators have to act serious, not allowing childish behavior.

 

I run a community of 350k users, I've been in similar shit, then I simply woke up and told myself I'll fix things, without anyone's suggestions and influence.

If you listen to everyone, you wont make it far. If you lack of ideas, smoke a joint and grab a beer and focus on the issue. The solution is in front of you. 

Edited by DTT
Posted (edited)

Drama brings people back. Corner all that drama in just 1 section. Put a fuckton of ads in there. Punish everyone else who brings drama outside of this section by not allowing them post messages for days.

Wow, somebody is using his brain here.

How will this be implemented? "fuckton of ads" EVERYWHERE.

Edited by Sido
Posted (edited)

Wow, somebody is using his brain here.

How will this be implemented? "fuckton of ads" EVERYWHERE.

I meant that flame section or call it w/e section can be filled with a lot of ad spots which will count more impressions.

Most of ad nets allow publishers have 3 slots.

 

If he adds 2-3 ad nets, he'll be generating a nice monthly income.

 

I'm currently making around $2.5k just from adsense on 2 websites of mine. I also run offerwalls (surveys, offers and other stuff) which are a good source of income.

 

He probably could add surveys/offerwalls so users can collect points which can buy whatever they want.

"Donator" and other statuses or whatever he thinks of and it's easily sold on here.

 

Dec 1st to today I've made around $7k from offerwall sites.

 

Main issue with website owners is that they don't look for other sources other than private advertising.

 

It's all about demand and supply. This forum's supply has dropped sharply, since most of people who've been hardcore MXC users have grown up and moved further.

Newer generation users don't play L2 anymore, they play LoL, DotA and other graphical games, which are newer and hyped more

Edited by DTT
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...