Jump to content

Recommended Posts

Posted

poster5.jpg

 

Elmoreden is a new project we build into the Lineage II private server world. Our goal is to provide a nice and relaxing place for having fun. The team behind is experienced with various successful servers currently active. We do not target to make a money making machine neither collapse after a couple of months. We are here to stay and we know how. Our forums are open for you to join anytime and speak your opinion and be sure, we will listen carefully and consider your wills. Even if you have nothing to add for now, just register so we can anytime update you for the progress of our server.

 

Server description:

Full working, bug-less Gracia Final (l2off) platform. All the modifications are stated bellow, if something is not there, then its retail.

 

Rates:

Exp/ Sp/ Adena: x10

Drop Chance: x10

Spoil Chance: x10 / Amount: x5

Boss Drop Chance/ Adena/ Exp/ Sp: x10

Quest Exp/ Sp/ Adena Rewards: x10

Quest Item Drop: x5

 

Enhancements:

.online – shows online player amount.

.expon and .expoff – to turn on and off exp gaining when killing mobs, etc.

.delevel – to remove one level every time you use it.

.time – to show server date and time (useful to sync for Olympiad and Sieges).

 

Offline Shop System:

Make a private store and right click your adena inside your inventory.

 

Full server protection against dupes, exploits etc.

 

Full anti-bot and 3rd party application protection.

 

Hardware:

CPU: Intel Xeon i7 W3520 - 4?2(HT)x2.66+ GHz - 8 Mb L2 – QPI 4.8 GT/sec - Turbo Boost Technology @ 2.93GHz

RAM: 24 GB DDR3

Hard Drives: 2x 40 GB Intel SSD 320 + 2x 2 TB SATA2

Switch Port: 1 Gbps

Bandwidth: 1 Gbps

 

Website:

http://elmoreden.com/

 

Forums:

http://forums.elmoreden.com/

Posted

Server has been updated:

* Implemented New Item Protection System (Anti Steal System). It is disabled for now and will be enabled in Live. This system protects your character by a secondary password, to trade, drop or destroy items. Very useful when you have to manage shared accounts.

* Implemented Player Command : .delevel which will remain disabled for now and will be enabled by a player poll since some players may abuse it on shared account. As an alternative we have .expon .expoff which is safer.

* Fixed Private Store Exploting that Allowed Players to Input Fake Items Leading to Scamming.

* Included new Territory Wars Chat Type ‘^’.

 

http://elmoreden.com/2011/08/08/server-has-been-updated/

Posted

PTS files?

 

Better than that.

 

Introducing soulshots and spiritshots for sale (beta only):

 

NPC: Helvetia

Place: Grocery Store

Town: Giran

 

On map: 9zqbrd.jpg

 

Select the option: 2d9s50o.jpg

 

And the products in packages of 1000 with the retail prices: 2po17rn.jpg

 

http://elmoreden.com/2011/08/08/for-beta-only-soulshot-spiritshop-sold-by-helvetia/

Posted

Can you please be more specific?

How more specific do you need to be?

 

A kid bought a fr3d pack, and is now starting a server.

(Please note features and fr3d's updates).

 

He did absolutely nothing himself, since he's going "retail".

And is using the same weak fr3d client protection as anyone else who bought his shiz.

(I assume this, granted - but if you can't do the server part, you can't do the client).

 

How is it unique?

It's not.

 

How is it managed by experienced people?

It's not(I geuss if you count cashcow management abilities, it may be).

 

 

If you wanna go further take this:

Full server protection against dupes, exploits etc.

 

Get him to name 1 single dupe(GF, not C4) and how to do it  specificly - and show you as well.

Posted

How more specific do you need to be?

 

A kid bought a fr3d pack, and is now starting a server.

(Please note features and fr3d's updates).

 

He did absolutely nothing himself, since he's going "retail".

And is using the same weak fr3d client protection as anyone else who bought his shiz.

(I assume this, granted - but if you can't do the server part, you can't do the client).

 

How is it unique?

It's not.

 

How is it managed by experienced people?

It's not(I geuss if you count cashcow management abilities, it may be).

 

 

If you wanna go further take this:

Full server protection against dupes, exploits etc.

 

Get him to name 1 single dupe(GF, not C4) and how to do it  specificly - and show you as well.

 

Ah OK, that you mean.

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