How to implement block buff and disable level 80's skills

Hellion

Vagabond
Hello fellas,

Could you please let me know how can I implement block buff (active skill) and disable level 80's skills to be auto-learned like, FOI(flame of invincibility), DOD(day of doom) and so on ?
Thank you for support in the early thread !

Best regards,
Hellion
 
# Giving to all players skill Block Buff id 5088 - Signal
BlockBuffSkill = False
# Block Buff Exclude skills
# Example for add more: BlockBuffExcludeSkill = 1323,1418
BlockBuffExcludeSkill = 1323
 
Hi, you can disable auto learn from data/skill_tree/normal_skill_tree.xml.
In that file you got something like:

XML:
<class id="0"> <!-- This is the class ID (Human Fighter this case)
            <!-- Power Strike -->
            <skill id="3" level="1" cost="50" min_level="5"/> <!-- Skill ID and level where it will be learnt -->

Just find every 80 skill and remove the entry from that xml.
Also if you want to fully disable the skill just comment it from data/stat/skill/
 
Hello guys, i need some help about Block Buff ID 5088.
HTML:
<def name="ignoreSelfBuff" val="true"/>
But it does not ignore Self Buffs and toggle skills.
Any ideas ? Thanks.
 
Back
Top