Jump to content

[l2m]L2Ultima x666 high rate, ballanced customs.


Recommended Posts

Posted

ultima.jpg

 

We would like to introduce you and invite you to a whole new High-Rate server in the world of Lineage II.

We guarantee you a stable server, professional administration and we assure You that it will last much longer than for a few days.

 

The official launch of the server is scheduled for 15.11.2011 - 18:00 GMT+1

From the date of 11/1/2011 server is in beta mode, with automatic creation of accounts, before the official launch it will be wiped.

 

dekor.png

 

base Server Info:

Rate Xp: 666

Rate Sp: 666

Rate Drop Adena: 666

Rate Drop Item: 1

Rate Drop Spoil: 1

Rate Party XP: 1

Rate Party SP: 1

Full GM Shop

NPC Buffer

Teleporter

Custom locations

Custom drop

Anty-cheat system

Many clan and castle modifications

For more info, visit our forum.

dekor.png

 

Server hardware:

Processor Intel i7-920, 24GB RAM, 100Mbit connection. Hosted in OVH DataCenter.

 

 

To spice up the game and increase the a-beep-t of PvP as much as we can, we developed several significant modifications, such as the clan system, siege system, special farm locations, and additional currencies, the detailed manuals can be found on the server forum.

dekor.png

 

Currencies on the server:

There are special exchangeable currency, available in drops: Silver Dragons, Golden Dragons, Ancient Adena. They will be used to purchase the GM Shop.

 

dekor.png

 

Clan system, Ally, Siege, Castle Territories:

To make the game more intensive and more interesting, we have completely changed the castle system, siege system and a system of acquiring clan skills or clan lvls. For each level, there has been prepared separate quest that must be made by the Clan-Leader and a number of Clan-Members. Clan reputation points are needed to complete Quests.

 

Siege occurs once a week. Only 4 Castles are present on the server: Schuttgart, Aden, Gludio and Innadril. For each of them we assigned special zone with specific drops. Having possession of the castle mean possession of one special territory. Territories are also a place of gaining reputation points - You should protect your territory.

 

Each clan holding a territory can earn extra reputation points by killing mobs and enemy and in another castle territory. The owner of the other territory loses some clan points, and after some threshold his castle functions are disabled for 24 hours. Clan that owns the castle, is notified that the stranger clan exp in their castle territory. This results in frequent territory fights and many PvP between the strongest clans.

 

Additionally, possession of the castle, brings with it the ability to access specific castle instance.

 

dekor.png

 

Farm araas:

We  prepared a number of places to farm, to ensure even chances, and above all a lot of PvP.

 

Entry-level Locations: Crypts of Disgrace, Stakato Nest - locations prepared for the characters which starts  the game.

Regular farms: Cruma Tower, Garden of Eva, Giants Cave, Archaic laboratory - locations prepared for players s80+, with a strong focus on the party. Mobs are strong and they have social aggro.

Territories of the Dragon Bosses: Goddard castle, Rune castle - on these sites you will find some "mini Raid Bosses" divided into 3 levels, each dropping special items needed to buy weapons / higher armor grade from GMshop.

dekor.png

 

Donates, Grants:

 

There will be a simple Donations, will be in them:

head hats, agathions, pets, packages of LS Stones,

exchange of weapons to another of the same grade,

VIP accounts (access to special instances),

change gender / nick, unban (once per life),

... and many other

dekor.png

 

So? Are you ready to join us ?!

 

How to connect:

Just download the Patch from our website. Patch contains Auto-Updater. Updater validate the client version, and in case of non-compliance it will automatically download the missing / correct files.

For more information visit our forum: http://forum.l2ultima.eu/

 

Webpage: http://www.l2ultima.eu/

Account registration will be available 2 hours before the start of the server.

Posted

Hi!

I want to invite You to l2Ultima once more! We have prepared many changes that will make our server much more user friendly! We have also modified a few settings and fixed some problems. We offer you the stable high rate solution with active development.

 

Join us today!

http://l2ultima.eu

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..