Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/
Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Recommended Posts
Top Posters In This Topic
2
2
Popular Days
Jul 21
4
Top Posters In This Topic
ReFresh 2 posts
PetePeter 2 posts
Popular Days
Jul 21 2022
4 posts
Popular Posts
ReFresh
Required skill level: Begginer Estimated time of work: 5 min Hello everyone, I noticed that the leadership skill description isn't showing bonus values correctly, so let's g
PetePeter
That's not correct, "skillPower" use the value of "player.GetSkillCurrentEfficientPercentage". The real fix is to use "skill.GetSkillPowerByLevel" as the server side do. ## uiTooltip.py
PetePeter 38
That's not correct, "skillPower" use the value of "player.GetSkillCurrentEfficientPercentage". The real fix is to use "skill.GetSkillPowerByLevel" as the server side do.
Link to comment
https://metin2.dev/topic/29344-leadership-skill-description-bonus-values-display-fix/#findComment-150660Share on other sites
ReFresh 3151
@PetePeterYes, if you want to be perfectionist, you can do it like that, but since in source wasn't any function like that, we could simply use the function, which was in source and that was the GetSkillCurrentEfficientPercentage. By using this function, you'll get the same values, because of this:
PythonPlayer.cpp:
But as you said, in server source it's done like that:
Party.cpp:
You'll get correct values in both ways.
Edited by ReFreshI'll be always helpful!
Link to comment
https://metin2.dev/topic/29344-leadership-skill-description-bonus-values-display-fix/#findComment-150665Share on other sites
PetePeter 38
My bad you are right, I took the python part from the 2018 root and this is the "official" function so I admited than there is no existing function who read the skillPower so they created a new one.
Link to comment
https://metin2.dev/topic/29344-leadership-skill-description-bonus-values-display-fix/#findComment-150666Share on other sites