Jump to content

Do you like it?  

14 members have voted

  1. 1. Does this actually worth to open?

    • Yes
      5
    • No
      9


Recommended Posts

Posted (edited)

Hello community , my name is Howard (Internetic name) i am not from Germany as my account says but it does not matter so much from where i come from. So me and my team are developing a C4 project, using JAVA (i like to be honest) and the features are the following:

 

 

Rates x35 - Adenas x200 Drop x5

Shop till A grade , Weapons till A grade [A Grade Armors are Sealed and weapons without special ability] 

To unseal armor you will need to farm armor tokens that are droppable generally from all mobs during your PVE and you exchange some adenas for soul crystals to put your weapon a Special Ability.

S Grade Set Costs 45 million adena each part and weapons 100 million + they are without S/A u need to put the S/A

Class Manager Free

NPC Buffer Basic Buffs and Ressists , there no cov and critical songs/dances/Greater Might etc..

24 Buff Slots + 10 debuff slots

Olympiad classes/non classed based games (13 participants for classed and 2 for non classed)

Customs:

Titanium Armor : 

 

Heavy:CON+3, STR+3 ,P. Def. +22%, maximum HP +1000 ,Atk. Spd. / P.Atk. +6%, M. Def. +25% 

Light:  Maximum HP +1500 Maximum MP +500 Atk. Spd. / P.Atk. +12% P. Def. +10% DEX +3 STR +3 

Robe:   Maximum MP +1000 Casting Spd. +20% M. Atk. + 20% P. Def. +18% M. Def. +15% INT +2 MEN -2 

 

Each part will cost 2 Raid Tokens droppable from all bosses 70lvl+ on the map and Titanium Ores + Armor Tokens

 

Epic - Dynasty Weapons:

they are Kamael Weapons ( Classic Dynasty with hero effect and color glow) and they have retail hellbound stats

 

Tattoo: 

Giving just some stats... For example Soul gives +20 Atk Speed and avadon +25 casting speed ( cost 15 million adena each)

 

Dyes - Retail like and whatever is on retail shops

Enchanting: Retail like Rates 

Safe +3 

Max is Unlimited 

Grandbosses time will be touched to match faster and better pvp 

 

Boosted Adena Zones + Exp :

Varka

Ketra 

Hotsprings

 

On Varka and Ketra you can get Titanium Ore with 15% chance or by spoiling with 35% 

 

 

I think this reminds a small classic taste of old good L2 memories just with a little customization that people might do not like

 

that is it for now.. what is your point of view?

 

 

Trolls/Spammers will be reported and ignored till the punishment, keep it clean

 

 

a small Sneak pic of Player Shop:

http://imgur.com/a/hxD0V 

Edited by HowardStern
Posted

Don't know if C4 sounds a good option.

Well, i got to agree but we investigate so much and we see that people playing Classic client, so why not to play an old classic chronicle? 

Posted

Then why not making classic ?

Not skilled enough , not clue of how they new stuff work , stopped playing l2 after hi5 (still dont have clue of most stuff on hi5)

Posted

Because it's simple :

- You do C4

- it's Java not retail, where full C4 leak exist

 

You have not much choices as C4 Java are outdated as fuck : downgrade a recent pack.

 

If you can downgrade, you can upgrade to classic too.

Posted

Because it's simple :

- You do C4

- it's Java not retail, where full C4 leak exist

 

You have not much choices as C4 Java are outdated as fuck : downgrade a recent pack.

 

If you can downgrade, you can upgrade to classic too.

i got to agree but i do not know how the new functions are working where i can find out how?

Posted

There is some classic private server around using retail leak, starts there, can't tell you which one as I don't know

Posted

True with friend above ! Classic Better ! and if you dont have idea how they are working its easy ! Go 2 months play as gamer and after try to open your own project

Guest
This topic is now closed to further replies.


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