Jump to content
  • 0

HELP Target...


Question

Posted

On archid latest rev is a bug with targeting

Character about every 4 mins stops and can't move untill he targets himself...

 

Who know how to solve this problem?

Recommended Posts

  • 0
Posted

Honestly, its not a hard thing to fix but actually, I'll help you in a diff way..

Don't use dumb packs, either use L2jFree or L2j.

The end.

  • 0
Posted

I know about this... But man if you don't know where is the bug, than don't write at this topic... I want to fix it at this pack not on l2jserver or l2jfree...

  • 0
Posted

its a common bug on L2JArchid, setekh have some rl problems so he cant be online to fix it so patience and wait for updates..

 

That's the problem, i can't wait because player leaves my server ....

  • 0
Posted

explain it exactly whats the bug you attack a mob for example and when you use a skill your char stuck or the char stuck suddenly without any action

  • 0
Posted

explain it exactly whats the bug you attack a mob for example and when you use a skill your char stuck or the char stuck suddenly without any action

it happens some times..u are moving and it stops moving after some mins, and u have to target yourself to move again.

 

the same happens with the class changer, u have to target your name to move or speak again to it.

  • 0
Posted

i suppose thats an archid related bug not a common bug for all pack like the one that explained above so only the archid "developers" can know what they fucked up best soluation is w8 until they c/p a fix too ;)

  • 0
Posted

But this thing happens once at 3 hours :S

Its not a serius problem.

 

If you don't know when it happens, than don't post at this topic... It happens every few mins ... About 3 - 5 mins and u stuck.

  • 0
Posted

But man if you don't know where is the bug, than don't write at this topic... I want to fix it at this pack not on l2jserver or l2jfree...

Oh I do know how to fix it.

I just don't want to help you ^^

  • 0
Posted

LOL!!! Man you are such a kid... :)

Kid or not, I do hold the answer.

And the very reason why I ain't helping you is due to your lack of respect.

So the same attitude wont help you for sure ;)

 

On the other hand, you are to read the rules carefully, staff insulting is not a common action. I wonder why ?

 

Good luck with your problem and still my answer is the same:

- Change to a proper pack provided by a proper team.

Guest
This topic is now closed to further replies.


  • Posts

    • 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
    • The pot calling the kettle black.  '' GX-EXT'' He did some work for a friend and hasn’t finished it to this day—so, the pot calling the kettle black. I find it funny.   '' GX-EXT' IS TRASH PERSONA      
    • Looks that many source is gonna leak?
  • 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..