Jump to content

Recommended Posts

Posted (edited)
GrrI.gif

We are glad to announce new High Five server - Pure x15!

 

Beta : 12 March, Sunday, 20:00 CEST \ GMT +2 Greece 

Live : 17 March, Friday, 20:00 CEST \ GMT +2 Greece


L2Redmoon is launching instead of L2MxC since Maxtor is busy this month, we will have cooperation though with L2Tales and we will try to make the best server for this year with as much as possible low donations and antibot protection made customly by developer of tales/redmoon that will block exp/adena earnings from people using 3rd party programs.

 

RATES

EXP : x15

SP : x15

Adena : x10

Spoil : x10

Drop items : x10

Quest Adena : x3

Quest Drop : x4

Weight Limit : x5

Manor : x2

 

ENCHANTS

Safe Enchant : +4

Max. Enchant : +12

Normal Scroll chance : 52%

Blessed Scroll chance : 60%

 

 

BASIC CONFIGURATIONS

Server, and Forum Time : GMT+2

Buffs, Dances and songs Duration : 2h

Buff Slots : 24

Dance and Songs Slots : 12

Max. Clients per PC : 6

Olympiads Max. Enchant : 6

Unique Anti-Bot protection

 

GENERAL INFORMATION

Sub-Class Free without Quest

Sub-Class Max. Level : 85

Class Master

Off-line Shop mode

Off-line Buffers mode

Auto Learn Skills

Auto Learn Loot

Unique Community Board

Droplist Search Engine

Auction System

Champions System

Wedding System

 

LINKS




 

 

We wait for you 12 MARCH on OBT and 17 MARCH on Grand Opening!

Enjoy!

Edited by Celebron
Posted (edited)

"we are glad to announce"...

 

That cliche expressions piss me off.

x15 2K17 LUL

rates made for adena sellerz :P.

I think they're good,easy level up so no matter that much

Edited by borderick
Posted

rates made for adena sellerz :P.

I think they're good,easy level up so no matter that much

botters cant boting with 9 boxes, confirmed

Posted (edited)

no confirmed )  its another adminos, stalonka just helping

even since only help,they can still have good resultz and nice serber. I think we finally have somethin very good in a few days.

Edited by borderick
Posted

even since only help,they can still have good resultz and nice serber. I think we finally have somethin very good in a few days.

if me join, it will be again 1 side serber :( like last tales

Posted (edited)

there were some plans to make l2mxc but maxtor was busy with in real life stuff and there were big delay so we partnered up with l2tales and they will help with advertise as well with the project stability! we will take care everything ingame and there will be low donations as the last redmoon 

Edited by Celebron
Posted

there were some plans to make l2mxc but maxtor was busy with in real life stuff and there were big delay so we partnered up with l2tales and they will help with advertise as well with the project stability! we will take care everything ingame and there will be low donations as the last redmoon 

glad to hear about advert,you had your name and now with tales gonna be good enough and full people,i belive in this project and it was about time to come,the only thing you should care more is bots and for donations keep them low so everyone can have a chance,not put more or op donations.

Posted

glad to hear about advert,you had your name and now with tales gonna be good enough and full people,i belive in this project and it was about time to come,the only thing you should care more is bots and for donations keep them low so everyone can have a chance,not put more or op donations.

low donations and antibot protection made customly by developer of tales/redmoon that will block exp/adena earnings from people using 3rd party programs.

Posted

low donations and antibot protection made customly by developer of tales/redmoon that will block exp/adena earnings from people using 3rd party programs.

yes i saw that,but idk how safe could the protect is,thats why i told to take care,i mean being online look reprots and block everyone who can by pass these things.

:P

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