Jump to content

Recommended Posts

Posted

Retail will be free to play, upcoming with the release of Goddess of Destruction, the exact terms are not released yet.

 

New official EU servers will open also.(www.lineage2.eu)

 

Sources:

http://www.lineage2.com/gd/play-your-way.html

http://boards.lineage2.com/showthread.php?t=218352

http://massively.joystiq.com/2011/10/11/lineage-ii-adopting-a-hybrid-business-model

Posted

Retail will be free to play, upcoming with the release of Goddess of Destruction, the exact terms are not released yet.

 

It's rumored that there will be fresh servers also :) but that's not officially confirmed.

Bye Bye private servers

 

Sources:

http://www.lineage2.com/gd/play-your-way.html

http://boards.lineage2.com/showthread.php?t=218352

http://massively.joystiq.com/2011/10/11/lineage-ii-adopting-a-hybrid-business-model

 

Look up frost.

 

Look up how many people play on RU Retail vs leaked hFive RU servers.

(Not counting l2j or GF at all)

 

When the private servers which only has rates changes get more players then retail which is free 2 play, you can bet your ass something is not being done right.

 

 

IF anything this might be good.

Posted

I saw all of the 3 sites, couldn't go through the whole L2 forum tho ;D

 

When they say near future, they mean before christmas, or middle of 2012?

Posted

whats the trick ? less exp sp etc... ?

Currently in retail(High Five), its already super easy to reach 76, in a month, just playing casually 3-4 hours a day, and don't tell me its not, because I just made a char 78 in 1 month. So imagine how easy it is now.. its going to be even easier in Goddess of Destruction. Obviously they will implement a cash shop, but I guess we'll just have to wait and see what they sell...

 

I saw all of the 3 sites, couldn't go through the whole L2 forum tho ;D

 

When they say near future, they mean before christmas, or middle of 2012?

It should happen when Goddess of Destruction releases, which is rumored to end of November 2011

Posted

the option to pay for a premium account giving x2 exp, guaranteed server slot(enter server, even if full), running multiple clients. Also, of course theirs a "cash shop", where you can buy various items, and from what I've seen on the l2.ru, its not anything that interferes TOO much with gameplay. A few things in cash shop include, ® Grade SS/BSS, Auxiliary Stones, Elixers, Agathions, Mounts, Town SOE's, Teleport flags, basic buff scrolls. Yeah, sure, there are a few things such as Auxiliary Stones that you can say "pay to win, no thanks", but they have to make their money some how.

Posted

There are only 2 - 3 Retail NA servers left in existence.... more players play on private servers than Retail.

 

NC Soft needs to boost rates to 5x and the servers will fill up again.... make spoils 10x/adena 10x etc.... drops 2x.... and consolidate buffs into 5 - 9 buffs only ( no more 30 buffs)

 

Then have donations for small stuff, and it will be best L2 server ever... but they will only have to pay for 2x.... and normal people play with 1x Xp....

Posted

wts chars gia NAIA.

o Naia mallon tha poulithei stin Inovva (Rwssiki etairia pou exei ta dikaiwmata hosting sto Rwssia kai eksagorase kai tis Europis)

i NCwest tha parameinei mono North America.

Ara o Naia prepei na paei me Inovva kai akougetai tha anoiksoun kai alloi 10 new server (KAI ISWS DE FTASOUN!!!) apo Dekemvri!

opoios de thelei na ksekinisei apo tin arxi:

 

WTS character in Lineage2 Official server NAIA:

Cardinal 86lvl - subs: 81 /80/80 (full geared)

Hell Knight 8xlvl - subs: 78 poler full (good gear)

Eva Saint 8x lvl - subs : 7x DC

SWSmuse 8x lvl, nobless, subs: 7x HE/7x pw

 

mail me : gigi.george.mail@gmail.com

 

Posted

http://news.mmosite.com/content/2011-10-12/lineage_2_goes_free_to_play_new_hybrid_business_model_announced.shtml

 

NcSoft and Innova needs to behave like p. server for their future cash out of this game. Looks like on KR and RU works, so I'm sure it will work for EU also.

About NCWest.. god bless them.

 

For sure no more l2off private servers.

 

I guess that p. servers running High Five Part 5 100% L2OFF will continue, but it is just one like this atm.

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

    • sell adena l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO Also on sale are Epic jewelry, Clothes at a very good price
    • Hello Sorry, my Discord is: ave7309
    • “Hello, I’d like to present a short description of the server. Everyone starts equally at max level 80. The server includes a custom buffer, custom class master, custom weapons and armors, custom zones, custom teleporter, custom raid bosses, and much more. I’ll leave a link in the description for those who want to see how everything looks inside. The server is only open on weekends, and you can find more news via the Facebook link.”   https://www.facebook.com/profile.php?id=61578869175323
    • 1. You where subscriber 3 years ago. 2. There is no current L2jMobius 2.8 Seven Signs version. Subcriber or not. 3. You have your answer from multiple forums that more items is more delay.  
    • 1. Optimize Packet Serialization Look in ItemList.java or wherever the inventory packet is constructed. Instead of building the packet with inefficient string concatenation or repeated allocations, use a preallocated buffer and avoid creating new objects for each item. Mobius sources are Java-based, so profiling with something like VisualVM or YourKit can help see where most time is spent. 2. Avoid Sending the Full List Each Time Modify the server to send only changed items (diff packets) when the inventory window opens. Some newer forks implement this as “lazy loading” or paged inventory so the client only loads e.g. 100 items at a time. 3. Limit the Inventory Size Per Page Instead of showing all 500 slots at once, split the inventory into pages/tabs (100 slots each). When the user switches a tab, send only that page’s items. This requires some client-side editing, but it’s the most user-friendly long-term fix. 4. Database & Cache Optimizations Ensure your items table is indexed by owner_id to make the query for player items fast. Cache item templates and static data so they are not reloaded every time the inventory is shown. ⚠️ Things to Keep in Mind Increasing slots from 80 → 500 does not just change a number — it multiplies the workload for packet building and UI rendering. You can’t fully avoid some extra cost with 500 items, but you can keep it under a few milliseconds if you optimize how and when the data is sent.    
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock