Jump to content

Recommended Posts

Posted

na kanw kai egw mia erotisi? poses mlkies travate tin imera? eleos pia rotaei o kathenas gia tis dyes.... omg kai 3 troll

p re file entaxei re kai ti egine.erxesai esi kai petas tin mlkia etsi gia n pareis post
Posted

Re pedia ta DYEs ta vazei o kathenas me TO pws pezei nioste ligo Px an exeis Moonlight sentinel p exei idei xamilo HP + Dragonic katevazei kialo HP  kai dn mnporeis na pekseis kai grigora mporei na min thes na valeis dye -con gt dn pezeis grigora h na thes na valeis +con gia na min peuteis eukola kserw  gw sto katw katw an ksereis to kathe Dye ti kaneis einai mono spamming to thema tis erwtiseis gia na ginete kouventa girw apo ena thema kai na mazevete post opos paratirisa auto ginete edw pera eleos dld kai min petaxti kaneis kai pei p to eides oti ginete spam 

 

na kanw kai egw mia erotisi? poses mlkies travate tin imera? eleos pia rotaei o kathenas gia tis dyes.... omg kai 3 troll

 

... kai ama laxei bale four.. :P

 

kai alla oxi mono auta uparxoun kai ta pm

 

  • 2 weeks later...
Posted

1.)To dragonic bow den katebazei hp

2.)simboules dinoume edw den leme oti px gia afton ton char PREPEI na baleis afto k afto..... opws eipes k esy eksartatai apo to pws pezeis ton char, ama 8es na ton kanei na antexei sto ksylo bazei +con -str/dex ama 8es na kanei polla dmg bazeis +str -con/dex ama 8es critical speed atk speed evasion accuracy bazeis +dex -str/con

Posted

darky dn paizei na trabame....

esy????

gt re file o allos mporei na thelei na mathei gia ta dyes ti tha tou peis esy na mn mathei re file???

as sobareytoume ligo!!!!

an kai twra to G@M1S@T3 to topic gt to spammarate telios :Pp

BTW darky ola ayta filika......:P

Posted

darky dn paizei na trabame....

TI? Den travate? APO kai KLIETE! Pws tin vgazeis dld? H mlkia einai igia! Mia fora tin imera kanei ton prostati pera.. Kai tis p*pes peri gomenas na tis afisete.. Kai egw exw ala tin mlkia pote den tin afisa.. Einai h moni pou kserei ti 8elw.. xa0xa0x0a0x0a0x0ax0aaxa

 

Sorry gia to OFF TOPIC ala den adeksa...

Posted

LOL!!!!!!

kai exeis gkomena kai trabas mlkia???

0xa0ax0ax0ax0a0x0ax0a0xa0ax00x

OMG!!!! man!!!!!!

ti n s po???

OMG!!!!!!!!

WTF?????

soz kai egw pou bgenw off topic kai spamarw alla kai egw dn anteksa :D

 

p3tr0s LOL!!! dn ginete na to pistepso!!!! OMG!!!!

  • 2 years later...

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