Jump to content
  • 0

Olympiad skill refresh problem


Slaughterer

Question

Hello, im having a problem with olympiad skill refresh. After match my olympiad system doesnt refresh skills like it supposed to... does any1 have script for this or know what could be wrong  ? im using l2jserver gracia epilogue pack.

 

cheers.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Dunno how is gracia epilogue olympiad, but in the current L2J, this can be found in AbstractOlympiadGame.java, located in model.olympiad

 

removals() remove all type of buffs and bonuses at entrance, when playerStatusBack() add all them back when you're out.

 

You surely miss one part in playerStatusBack. The best is too compare the 2 files.

 

If it wasn't this sort of "skill refresh", explain better :D.

Link to comment
Share on other sites

  • 0

i'm talking about skills like for example, during olympiad match you use ud or something like that.. after match oly system suppose to refresh that skill when player gets teleport'ed back to city, in my server it doesn't happen, also i don't have such directory as model or file as AbstractOlympiadGame.java.

Link to comment
Share on other sites

  • 0

i'm talking about skills like for example, during olympiad match you use ud or something like that.. after match oly system suppose to refresh that skill when player gets teleport'ed back to city, in my server it doesn't happen, also i don't have such directory as model or file as AbstractOlympiadGame.java.

You are wrong here.

Skills refresh when the match starts and players get ported to arena.

Link to comment
Share on other sites

  • 0

You are wrong here.

Skills refresh when the match starts and players get ported to arena.

doesnt matter i still need to fix it when player gets teleported in or back :) omg no1 have any idea how to do this, too bad :S

Link to comment
Share on other sites

  • 0

Olympiad.java

 

                ExAutoSoulShot atk = new ExAutoSoulShot(itemId, 0);
                player.sendPacket(atk);
             }
+            
+            for (L2Skill skill : player.getAllSkills())
+               if (skill.getReuseDelay() <= 900000)
+                  player.enableSkill(skill.getId());
+            
             player.sendSkillList();
+            player.updateEffectIcons();

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...