Jump to content

classic [L2J]Esthus Classic Pvp Server X1000 No Custom[Like Old Core]


Recommended Posts

Posted (edited)
NPi_V4hl.png
 
 
 
Welcome to L2Esthus – PvP Lineage II Server. We are glad to have you around and we hope you will enjoy playing with us.
Line][age Esthus is a totally customized server with amazing features such as unique equipment, modified skills, wide PvP areas, Clan wars, Castle sieges, Olympiads, automated events and much more.
We are currently working too hard to make server balanced and enjoyable!
 
 
Rates
# XP: x1000
# SP: x1000
# Max Enchant +25
# Safe Enchant +7
# Normall Enchant Weapon: 75%
# Normall Enchant Armor: 70%
# Normall Enchant Jewelry : 70%
# Blessed Enchant: 100%
 
Max 4 Chars from same IP (auto protect)
Chek Dualbox/Feed in Olympiad Game (auto protect)
Walker,OGG.PHX.... Protect 100% (auto protect client+server side)
Flood Protect Bypass,Chat (auto protect)
Check Players for ilegal items and enchants (auto protect)
Anti Feed PvP Protect (auto protect)
Dualbox kills not increase point
Full Geodata + Pathnode ( All Castle and Zones )
 
Server Features:
C4/C5/Interlude features/skills working 98%
Fishing
Seven Signs
Castle Sieges
Clan Hall Sieges
Noblesses & Heroes System (Nobless needs caradines letter which means that you need to kill the barakiel to get it)
Max Level 80
All Quests
Clan Wars
C5/Interlude Clan System
subclans (Academy,Royal Guards,Order of Knights) * Cursed weapons
Weapon Augmentations
Shadow Weapons
Dueling System
All C4/C5/Interlude Skills
All Raid Bosses + Grand Bosses + Frintezza
Olympiad 100% Retail like
DualBox allowed
100% Retail like gameplay without any customs
Flawless Geodata & Pathnodes
Active and experienced development/GMteam!
No corruptions!
Not used accounts will be deleted after 2 months
NO LAG!!!
100% Uptime
International community
New character start with 120.000.000 adena
Max Subclasses = 3
Max Subclass level = 80
Max Alliances = 3
All active/passive augments are fully working! 
All flood protections
Custom Start up zone
Messages for the players
Vote Reward System Hopzone,TopZone[offiline until we add the server]
Noblesse Only With Quest !!
Clan Crest In Town 
Pc Bang Point System

~Gold System [the player with the most pc bang point] every 2 weeks
Name Color and Announcement
 
 
~Global GateKeeper
~GmShop
~Clan Manager
~Buffer
~Augmenter
~Special Shop
~Misc Shop
 
 
Olympiad:
Every 2 weeks New Heroes.
Start Time: 18:00 GMT+2
End Time: 23:00 GMT+2
 
Events:
Last Man Standing
Mutant 
Battlefield
 
Edited by ourat1995
Posted

core was a shit. server for children and money, nothing more

wtf are you talking about? old core was OP  O0

 

 

I like features , like old times :)) will join

Posted

wtf are you talking about? old core was OP  O0

 

it was good when u were a child . except u are still one... i never liked this server. no big clans, no big mass fights, noth special at all. just some random clans and many 1manarmy ppl. gl

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