Jump to content

maugs47

Members
  • Posts

    1
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by maugs47

  1. Hi, just fixed it on my windows personal server: (im using the build from http://l2jserver.com) I'm not a dev so I will reproduce how I fixed it step-by-step: 1. Navigate to dir "C:\opt\l2j\git\l2j-game-server\scr\main\java\com\l2jserver\gameserver\model\actor" 2. Edit "L2Character.java" with text editor like Notepad++. 3. Change it FROM: mut.setPhase(3); if (mut.getSkillTime() == 0) { onMagicFinalizer(mut); } else { if (mut.isSimultaneous()) { _skillCast2 = ThreadPoolManager.getInstance().scheduleEffect(mut, 0); } else { _skillCast = ThreadPoolManager.getInstance().scheduleEffect(mut, 0); } } TO: mut.setPhase(3); if (mut.getSkillTime() == 0) { onMagicFinalizer(mut); } else { if (mut.isSimultaneous()) { _skillCast2 = ThreadPoolManager.getInstance().scheduleEffect(mut, 333); } else { _skillCast = ThreadPoolManager.getInstance().scheduleEffect(mut, 333); } } 4. Save file. 5. Compile by navigating using Windows Power Shell or Command Prompt to "C:\opt\l2j\git\l2j-game-server" and running the command: mvn install (I assume you installed maven in order to compile the server in l2jserver.com, if you created your server using other method use your compiler instead) 6. Extract the "C:\opt\l2j\git\l2j-server-game\target\l2j-server-game-2.6.1.0-SNAPSHOT" to your "C:\opt\l2j\server\game\" FOLDER. (again this is for maven compiler) 7. Done. Hope it helps anyone else looking for a solution.
×
×
  • 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..