Jump to content

Recommended Posts

Posted (edited)

Lineage II Evrika,
     Is currently recruiting skilled and loyal people who are determined and trustworthy to ensure a top quality team.

 

 

   Most of you must be thinking "what are their goals and motifs?" Well, we don't want anything besides creating an outstanding project which we would take on with pride. We want to invest our time and dedicate our knowledge to serving the Lineage player community.

 

WE KINDLY ASK THAT READERS DO NOT POST IN THIS TOPIC IF THEY ARE NOT INTERESTED !

  • For those who are willing to participate, they will be rewarded from 5 to 10% of profit, depending on their contribution to the project.

   As we all know, staff corruption is rather common in majority of servers. Our goal is to make sure that staff actions are transparent to the players and to eachother. In order to combat this issue, we have decided to create an administration council for our server.
 
SERVER’S ADMINISTRATION COUNCIL:

  • The administration council will consist of 5 to 7 members of the L2Evrika staff and will vary depending on how many will be recruited other than the existing staff (Intel and Nighty).
  • Therefore, we expect to see 3 to 5 new members.
  • Other than those 5 or 7 members of the staff, 2 of the clan leaders of the top 2 ranked clans will be added as well.
  • The player council members will change every month, depending on how their clan is ranked resulting in more opportunities for players.
  • The administration council will decide the fate of server the moment it opens to the day it closes.
  • Decisions will be made togheter and decided through Skype.
  • Server changes will not be applied until a consensus is formed.
  • At the end of each month, we will make a conference in which we will present the financial status of the server and the payments for each member of the staff.
  • The 2 player representatives, will be rewarded with in game incentives for their help.
  • We will especially need the player's perspective for creating and starting the server along with future editions.
  • The administration council, will decide what type of server it will be: Low-Mid or High rate.

   Everybody's opinion matters and is very important for us so therefore it is important to be serious.
Our plan is to invest a lot of our time and money to make this project a reality with the intent to be one of the top servers around.
   We have not completely decided on the name of the server, however it will currently remain as "L2Evrika." The name of the server is subject to change when a consensus is reached.
 
In order to maintain transparency and good relations between the players and the server staff, we plan on creating a donation committee which will keep track of the server donations.
 
THE DONATION CONTROL COMMITTEE :

  • The donation committee will consist of 5 members.
  • This committee will be formed from the top 5 ranked clan leaders.
  • The server staff will have the obligation to present the financial status every month or under specific situations.
  • The donations for this server will be kept on a PayPal account specifically for this project.
  • Any donation made to another PayPal account or taken personally will lead to appropriate ramifications.

   At the base of this prject, we will have a development team which is in charge of solving any bugs that come up or issues reported by players in less than 24 hours.
   This team won't have any influence on the Administration council or the donation committee.
   The development team will not be paid by the server's donations, since they will be paid as soon as possible after they have completed a task.
 
For more information, please contact us on skype :

  • Intel : l2evrika (Italian and Romanian language)
  • Nighty Andrei : nighty.andrei (English and Romanian language)
Edited by marinescugabi
  • 2 weeks later...
Posted

Hello

Im bobypoke  - catalina

I have very exp on l2 H5 

I play last 5years

And admin & devellopper script l2j - l2j sunrise,...

Pm me or contact me skype : access-store@outlook.com

 

Thanks

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