Jump to content

Recommended Posts

Posted

gataki ftw riii... extos apo to exp.. xrisimeuei kai se fighter's.. :P

+1

kai exi dio skills to pet

ena anevazi p atc kai ena allo crt

omws o elf summoner exi ena pet kai to pet exi skill pou anevazi hp ;)

Posted

o warlock m aresei polu san summoner alla kaluteros pisteuw pws einei o elemental polu grigoro exp! eidika s argo leei gt mporei n expareis k s arketa megaliteera mobs s sxesi m allous char k aneksartitos t foras den s noiazei!

Posted

kata tin gnomi mou o P.Summoner skizi kolous...

sto 8ema tou exp o P.summoner pisteuo pos einai o kaliteros...(egw me P.summoner ston suprime x5 olo solo pigene se necropolis k catacombes xoris buffs k istories,egw k to summon mou  :) )

twra an pame gia pvp...

nomizo pos exei arketes pi8anotites na nikisi dioti:1on:exei ta 2 qubic tou ta opoia gamane (phandom=-p.atk/-atk.spd/-p.def)        (spark=stun oloi tin ora sxedon se megala lvl k me ligi tixi)

2on:ta summon tou exoun trelo p.atk otan leme trelo enooume TRELO

3on:exei orea telika buffs(den einai kati to super alla etsi na leme ;D )

 

P.summoner VS E.summoner  =pezete an k nomizo oti einai 70% uper tou P.summoner(pezete dioti den exei k to super def to summon tou PS k to summone tou ES einai magos,ara parteto san pvp magou vs fighter)

P.summoner VS Warlock        =to pio pi8anon 8a nikisi o P.summoner 89%(8a ton faei sto dmg o summon tou PS)

Warlock VS E.summoner        =nomizo o warlock an k den ton 3ero ton char sxedon ka8olou... :-\

 

pantos 3ero ena oti oi SUMMONER gamane kiriolektika se OLYMPIADES

 

...

Posted

o warlock m aresei polu san summoner alla kaluteros pisteuw pws einei o elemental polu grigoro exp! eidika s argo leei gt mporei n expareis k s arketa megaliteera mobs s sxesi m allous char k aneksartitos t foras den s noiazei!

signomi alla 8a mou epitrepsis na diafoniso se auto to 8ema tespa

o PS exei poli kalitero exp ap ton ES

  • 1 year later...
Posted

Milao ek piras , exo filaraki elemental sumoner s x3 server, zorizete na fai 1 mob hot  springs , ti exi grigoro exp ke mlkies m lete? An er8ei war ginete louis gt to pet mexri na skasi 1 skill exi pesi 10 fores , ego exw sub phandom summoner , to pet m xoni 4 mob sto varka taftoxrona xoris na 8eli heal , skai me diafora polllaaaaaaa parapano dmg apo ta poni , me full buff / dance / cov / 78 lvl sumoner buf , sikoni 9987 p attack .  

 

Elemental summoner = pio gtp k apo pp gia exp / Se pvp pefti san xartopetseta to pet,  ke meta k aftos

Warlock = Trogete sto exp mia xara ine / Se pvp an exi mp se troi , an oxi , tin perni ke gernei.

 

 

 

Sr ke gia to undig , ala dn boro na vlepw tetia k na ta afino etc, psaxnoun merikoi ke katalavenun oti nane .

  • 5 weeks later...
Posted

Hmmm ok xwris full pt pou les sadastic pistebw gia mena o Elf Summoner giati exei to pet pou kanei arketo damage.

+fwnw mazi s pezei kala 3ilikia :/ kata tin apopsi mou OLOI XWNOUN..to 9ema einai..to afentiko 3erei na pezei?: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..