Jump to content

Recommended Posts

Posted (edited)

I used Akumu the engine in the system I want to play and it does not pass the screen to choose the server​

 

Download the whole system, dude.

 
p.s. Unless you're trying to connect to a server which has a custom protocol version.

 

How could I forget about dsetup? T_T

 

Here it is, fully working clean system for windows 10.

 

http://www17.zippyshare.com/v/3Yiu45mv/file.html

 

DyArxws.jpg

 
Edited by Trance
Posted

Downloaded the system opens the l2 but can not login and server I want to play does not pass the screen to choose server​

 

Because it's a localhost system, you have to edit it in order to connect to another server. :)

Posted

And how I do it, with its system more open not just to the server you want to play for the screen to choose​

 

Other people's server isn't my concern.

Posted

Other people's server isn't my concern.

So can you please tell me what must my admin change in theyr system? I want play L2 with friends so much but i cant...

Posted

So can you please tell me what must my admin change in theyr system? I want play L2 with friends so much but i cant...

Just replace the l2.ini

 

 

We went too far offtopic IMO.

 

On topic: Real 746 can be noGG'd exclusively through nwindow.dll (same as 744 and earlier).

Posted

Just replace the l2.ini

 

 

We went too far offtopic IMO.

 

On topic: Real 746 can be noGG'd exclusively through nwindow.dll (same as 744 and earlier).

So, i need to tell admins on L2blaze that i need new L2.ini from them? 

 

Or somebody can try log in to L2blaze.net (acc autocreate) and then send me funcion system :)

Posted (edited)

How could I forget about dsetup? T_T

 

Here it is, fully working clean system for windows 10.

 

http://www17.zippyshare.com/v/3Yiu45mv/file.html

 

DyArxws.jpg

 

This is the final revision of the system.

 

http://www1.zippyshare.com/v/drDnpwAf/file.html

Edited by Trance
Posted

Hi Trance, and with this system i can log only on your server? :)

 

All servers that don't use an anti-bot protection. Can't you guys figured out by yourselves? Just copy l2.exe ,l2.int and all dll files into your server's system.

Posted

Al correct except... this

 

4qmvjk.jpg

 

Not pass of here...

 

Waiting for hours and nothing.

 

Create character etc working but not enter in world of Lineage...

 

I hope this help to fix :D

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