Jump to content

Recommended Posts

Posted

Hey guys i WTS my char

on L2mafia.gr 02 faction server Koofs vs Noobs

 

SO,

 

Name:    panatha4ever

Faction: Koofs

Items:

 

Weapon:              +25 dynasty bow with PASSIVE duel might ,[glow=red,2,300]NEW: [/glow] +21 dynasty magic sword with PASSIVE shield

Armor:                  +25 dyn light, +21 dynasty heavy, +21 dynasty robe set

Jewels:                Valakas +21, zaken +21, tt earring +25, baium +21, ant queen +18

Tatoo:                  soul, power, avadon +25, resolve .....

Skills:                    ACTIVE might lvl10,ACTIVE wild magic lvl10 ACTIVE battle roar lvl10 ACTIVE shield lvl10, ACTIVE focus lvl10, ACTIVE prayer lvl10, ACTIVE Guidance lvl10, ACTIVE Evasion lvl10, ACTIVE magic barrier lvl10 (from donate at som which has passive magic barrier but is active),ACTIVE bless soul lvl10,PASSIVE evasion lvl10 (on tallum blades +21, PASSIVE might lvl10 (stucked from donate at tt earring +25),

 

And some little adena too....

 

PVP Count:          about 12.000

Clan with clan skills!!!!

 

my skills in screenshots:

ACTIVE shield: http://img37.imageshack.us/img37/4793/shot00264.jpg

ACTIVE might: http://img853.imageshack.us/img853/5600/shot00271.jpg

ACTIVE focus: http://img4.imageshack.us/img4/1923/shot00269s.jpg

ACTIVE battler roar: http://img853.imageshack.us/img853/479/shot00270.jpg

ACTIVE Wild magic:  http://imageshack.us/photo/my-images/88/shot00265.jpg/

ACTIVE evasion: http://img600.imageshack.us/img600/1063/shot00266.jpg

ACTIVE guidance: http://img221.imageshack.us/img221/2940/shot00272v.jpg

ACTIVE magic barrier: http://img17.imageshack.us/img17/7499/shot00273.jpg

http://img856.imageshack.us/img856/5120/shot00274m.jpg

ACTIVE prayer: http://img839.imageshack.us/img839/4715/shot00267.jpg

ACTIVE bless soul: http://img829.imageshack.us/img829/423/shot00279l.jpg

ACTIVE mp regen: http://img824.imageshack.us/img824/8720/shot00280.jpg

ACTIVE restore cp: http://img84.imageshack.us/img84/1721/shot00278.jpg

PASSIVE duel might: http://img255.imageshack.us/img255/1364/shot00124c.jpg (in dyn bow+25)

PASSIVE shield: http://img685.imageshack.us/img685/2752/shot00263d.jpg(in dms +21)

PASSIVE Evasion: http://img143.imageshack.us/img143/8383/shot00268b.jpg

PASSIVE STUCKED might (tt earring +25): http://img844.imageshack.us/img844/9080/shot00282y.jpg,http://img707.imageshack.us/img707/4678/shot00283.jpg

 

Aura flare on som: http://img840.imageshack.us/img840/8836/shot00275.jpg

[glow=red,2,300]

Offer me in Euros!!! With paysafe card OR paypal!![/glow]

Contact me via PM in Maxcheaters or come online in l2mafia and pm panatha4ever.

l2mafia.gr

 

pic:

shot00286o.jpg

Uploaded with ImageShack.us

PVP Video:

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