Clan skills and rank's

Deazer

Head Developer
Staff member
o manage which rank in the clan you need to edit the skill conditions on the rank.

Example:
<skill id="372" levels="3" name="Clan Essence">
<table name="#maxMp">1.03 1.05 1.06</table>
<set name="icon" val="icon.skill0372"/>
<set name="magicLevel" val="1"/>
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_PASSIVE"/>
<set name="minPledgeClass" val="6"/> - minimum with rank VISCOUNT
<set name="isCommon" val="true"/>
<for>
<mul order="0x30" stat="maxMp" val="#maxMp"/>
</for>
</skill>

If we want to give all the players this skill, not depending on the rank we put - 0
Example:
<skill id="372" levels="3" name="Clan Essence">
<table name="#maxMp">1.03 1.05 1.06</table>
<set name="icon" val="icon.skill0372"/>
<set name="magicLevel" val="1"/>
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_PASSIVE"/>
<set name="minPledgeClass" val="0"/> - minimum with rank VAGABOND
<set name="isCommon" val="true"/>
<for>
<mul order="0x30" stat="maxMp" val="#maxMp"/>
</for>
</skill>

All rankings by numbers:
VAGABOND - 0
VASSAL - 1
HEIR - 2
KNIGHT - 3
WISEMAN - 4
BARON - 5
VISCOUNT - 6
COUNT - 7
MARQUIS - 8
 
Back
Top