Jump to content

maugs47

Members
  • Posts

    1
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About maugs47

Contact Methods

  • Website URL
    qwerty.co

Profile Information

  • Gender
    Not Telling
  • Country
    Angola

maugs47's Achievements

Newbie

Newbie (1/16)

0

Reputation

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