all about skills and effects guide

Skill guide:
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

All tags must open and close.
Tags that can fit in one line can be closed inside themselves.

Example:
<add .....> ..... </add>
<add ...../>

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
format of xml-files:

<?xml version='1.0' encoding='utf-8'?>
<list>
<skill id="1312" levels="1" name="Fishing">
<set name="weaponsAllowed" val="8192"/>
<set name="mpConsume" val="1"/>
<set name="reuseDelay" val="1000"/>
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="FISHING"/>
<set name="operateType" val="OP_ACTIVE"/>
<for>
</for>
</skill>
<skill id="1313" levels="27" name="Pumping">
<table name="#power"> 19 28 38 50 55 60 65 70 86 92 97 103 109 115 136 143 149 156 187 195 202 245 253 262 271 312 321 </table>
<set name="weaponsAllowed" val="8192"/>
<set name="mpConsume" val="2"/>
<set name="power" val="#power"/>
<set name="reuseDelay" val="2000"/>
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="PUMPING"/>
<set name="operateType" val="OP_ACTIVE"/>
<for>
</for>
</skill>
</list>
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

1. <?xml version='1.0' encoding='utf-8'?>
Start of file header
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

2. <list>
The beginning of the list of skills, at the end of the file you need to close it with a tag </list>

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
3. <skill id="1312" levels="1" name="Fishing">
The beginning of the skill description. After all tags must end </skill>
skill id - unique id for all skills (both for mobs and characters)
levels - the maximum number of levels for this skill
name - his name

Description of skills:
A) <table name="#power"> 19 28 38 50 </table>
Table. When referencing a parameter #power, the value corresponding to the current skill level will be taken.
There can be several tables. Values can be whole or fractional and must be separated by spaces.
The values should be as many as the levels of this skill.

B) <set name="COMMAND" val="VALUE"/>

Mandatory parameters for each skill:
mpConsume - how much mana does it take
reuseDelay - recharge time
target - who could be the target
skillType - skill type
operateType - active, passive, switchable (toggle)

Список параметров:
COMMAND: canLearn - (value = "" - This skill cannot be learned. default - do not prescribe)
castRange - Cast radius
activateRate - VALUE
absorbAbs - VALUE
absorbPart - VALUE
advancedFlag - true/false
advancedMultiplier - VALUE
behind - true/false
cancelable - true/false
cancelTarget - true/false
charge_skill_id - skill_id для charge
corpse - true/false
critical - true/false
crush - true/false
deathlink - true/false
displayId - VALUE
element - VALUE
expPenalty - пенальти на эксп ("0.9")
hitTime - VALUE
hpConsume - VALUE
isCubic - true/false
isDwarven - true/false
isMagic - true/false
itemConsumeCount - VALUE
itemConsumeCountInTime - VALUE
itemConsumeDelay - VALUE
itemConsumeId - item_id item to be used "1458"
itemConsumeIdInTime - item_id, which will be used regularly "1458"
itemConsumePeriods - the period for which the item will be regularly consumed
lethal - true/false
levelModifier - VALUE
magicLevel - VALUE
minPledgeClass - VALUE
mpConsume - VALUE
negateDebuffs - true/false
negateEffects - "SLEEP"
negateEffects - "STUN SLEEP MUTE POISON BLEED BUFF DEBUFF PARALYZE"
negatePower - VALUE
negateStats - "mAtk mAtkSpd"
npcId - VALUE
num_charges - VALUE
onCrit - true/false
operateType - OP_ACTIVE/OP_PASSIVE/OP_TOGGLE
overHit - true/false
power - VALUE
reuseDelay - VALUE
save - VALUE
seed_any - true/false
seed1 - VALUE
seed2 - VALUE
seedCount - VALUE
seedcount1 - VALUE
skillInterrupt - true/false
skillRadius - VALUE
skillTime - VALUE
skillType - AGGRESSION/AIEFFECTS/BALANCE/BLEED/BUFF/CANCEL/CHARGE/CHARGEDAM/COMBATPOINTHEAL/
CONFUSION/CONT/CRAFT/DANCE/DEBUFF/DOT/DRAIN/DRAIN_SOUL/ENCHANT_ARMOR/ENCHANT_WEAPON/FATALBLOW/FEED_PET/FISHING/HEAL
HEAL_PERCENT/HOT/INTERRUPT_DISARM/LETHAL_SHOT/LUCK/MANADAM/MANAHEAL/MDAM/MDAM_ELEMENTAL/MDOT/MUTE
NEGATE_EFFECTS/NEGATE_STATS/NOTDONE/PARALYZE/PASSIVE/PDAM/PDAM/POISON/PUMPING/RECALL/REELING/RESURRECT
ROOT/SEED/SIEGEFLAG/SLEEP/SONG/SOULSHOT/SPIRITSHOT/SPOIL/STUN/SUMMON/SUMMON/SUMMON_ITEM/SWEEP/TAKECASTLE
TELEPORT_NPC/TURNER/UNLOCK
SummonItemId - VALUE
SummonMinCount - VALUE
target - TARGET_ALLY/TARGET_AREA/TARGET_AREA_AIM_CORPSE/TARGET_AURA/TARGET_CORPSE/
TARGET_CORPSE_PLAYER/TARGET_HOLY/TARGET_ITEM/TARGET_MULTIFACE/TARGET_NONE/TARGET_ONE/TARGET_PARTY/
TARGET_PET/TARGET_SELF/TARGET_UNLOCKABLE
unaggroing - true/false
undeadOnly - true/false
weaponsAllowed - VALUE

C) <cond>...</cond>
conditions for activating the skill. Not used in passives. If the skill is already activated, and the condition does not match, it does NOT turn off. conditions are checked for activation only.

Examples of using:
<cond msg="Too much hit points."><player percentHP="25"/></cond> (a message will be displayed)

without message:
<cond><player percentHP="25"/></cond> (25% hp)
or
<cond><player minHP="25"/></cond> (>25 hp)


D) <for>...</for>
a list of effects that are applied with an active skill or passive.
Example:
<!-- add value 2 to parameter MEN. -->
<for>
<add order="0x10" stat="MEN" val="2"/>
</for>

<!-- multiply the maxHP value by the value taken from the Tab-maxHP table and highlight the buff icon -->
<for>
<effect count="1" name="Buff" time="1200" val="0" stackOrder="#stack" stackType="hp_up">
<mul order="0x50" stat="maxHp" val="#Tab-maxHp"/>
</effect>
</for>

effects are added with words:
<add - adding
<mul - multiplying
<set - set
<sub - minus
<div - divide

order means the order of calculation. (order 0x08, 0x10, 0x30, 0x40, 0x50, 0x60)
0x08 used for basic parameter setting
0x10 used for basic parameter modification
0x30 for parameter multipliers
0x40 to add static bonuses to the parameter
0x50 used for multipliers of base bonuses to the parameter
0x60 to add static bonuses AFTER multipliers

List of changeable parameters:

Stats: CON
DEX
INT
MEN
STR
WIT
Params: accCombat
cAtk
cAtkStatic
hpEff
mAtk
mAtkSpd
maxCp
maxHp
maxLoad
maxMp
mDef
mpConsum
mpConsumePhysical
mpEff
mReuse
pAtk
pAtkRange
pAtkSpd
pDef
pReuse
rCrit
rCritPercent
regCp
regHp
regMp
sDef
Other: absorbDam
breath
concentration
element
ExpSpMultiplier
poleAngle
rEvas
rShld
runSpd
shldAngle
transferDam
bighead
Reflection skills:
reflectDam
reflectMagicSkill
reflectPhysicSkill
other: CommonRecipeLimit
DwarvenRecipeLimit
inventoryLimit
storageLimit
tradeLimit
rates: activateRate
blowRate
mCritRate
resists: bleedRcpt
bluntWpnRcpt
bowWpnRcpt
cancelRcpt
daggerWpnRcpt
debuffRcpt
earthRcpt
fearRcpt
fireRcpt
paralyzeRcpt
poisonRcpt
poleWpnRcpt
rootRcpt
sacredRcpt
sleepRcpt
stunRcpt
swordWpnRcpt
unholyRcpt
waterRcpt
windRcpt

E) terms:
<COMMAND VARIABLE="VALUE">
can be wrapped in tags <and> <or> <not>

example:
<sub order="0x10" stat="STR" val="1">
<game night="true"/>
</sub>

<and>
<player riding="strider"/>
<target castledoor="true"/>
</and>

command list (COMMAND):
<player VARIABLE="PARAM">
VARIABLE: race (Undead/MagicCreatures/Beasts/Animals/Plants/Humanoids/Spirits/Angels/Demons/Dragons/Giants/Bugs/Fairies/Humans/Elves/DarkElves/Orcs/Dwarves/Others/NonLivingBeings/SiegeWeapons/DefendingArmy/Mercenaries/UnknownCreature)
level
resting (true/false)
moving (true/false)
running (true/false)
riding (strider/wyvern/none)
hp

<target VARIABLE="PARAM">
VARIABLE: aggro (true/false)
undead (true/false)
pvp (true/false)
mob (true/false)
race (Undead/MagicCreatures/Beasts/Animals/Plants/Humanoids/Spirits/Angels/Demons/Dragons/Giants/Bugs/Fairies/Humans/Elves/DarkElves/Orcs/Dwarves/Others/NonLivingBeings/SiegeWeapons/DefendingArmy/Mercenaries/UnknownCreature)
castledoor (true/false)
direction (behind/front/side)

<using VARIABLE="PARAM">
VARIABLE: kind (Shield/Sword/Blunt/Dagger/Bow/Pole/Etc/Fist/Dual Sword/Dual Fist/Big Sword/Pet/Rod)
armor (None/Light/Heavy/Magic/Pet)
skill (skill_id)
slotitem

<game VARIABLE="PARAM">
VARIABLE: night (true/false)

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
F) Effects:

<effect count="1" name="Buff" time="1200" val="0" stackOrder="#stack" stackType="hp_up">

count = number of ticks that the effect lasts
time = tick length in seconds for this effect (In the example, we have one tick with a length of 1200sec = 20min)
name = what is this effect. Effects can have start, stop and duration effects.
val = value for "name"
stackOrder = used to replace one effect with another effect that has a higher stackOrder. an effect with a lower stackORder cannot replace an effect with a higherstackOrder
stackType = "Effect type "so that similar buffs are not applied

example: attack speed is added by 25%, but mana is taken away every 2 ticks 35 HP
<for>
<effect count="0x7fffffff" name="HealOverTime" time="2" val="-35">
<mul order="0x50" stat="pAtkSpd" val="1.25"/>
</effect>
</for>
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
@Deazer Is there any kind of stacktype for mana drug?
Code:
          <effect count="5" name="ManaHealOverTime" time="3" val="200" displayId="2077">
                <def name="ignoreMpEff" val="true" />
            </effect>

if it is equal it is above, if you has fullbuff it takes the place of a buff

but if you put this here

stackType="HpRecoverCast"

it is in place of the HP potion, is there one for mana or is it possible to create one? type HpRecoverCast
<set name="isIgnorBuffLimit" val="true"/>
 
Does anyone know how to decrease the CRITICAL DAMAGE OF SKILLS of the Duelist class?

I try whit:
1. "cAtk", not works because its decrease critical damage from normal hits, not critical damage of skills.
2. "pvpPhysSkillDmgBonus", not works because its decrease general damage from skill, not critical damage of skills only.

cAtkSkill not exit, anyone know how to decrease the CRITICAL DAMAGE OF SKILLS of the Duelist class?
 
Also skills have a critical rate
Example:
<set name="criticalRate" val="10"/>
you can decrease or remove that value. If you remove it, skills top make a crit damage at all.
 
Also skills have a critical rate
Example:
<set name="criticalRate" val="10"/>
you can decrease or remove that value. If you remove it, skills top make a crit damage at all.
This is just rate and chance.
 
Last edited:
If I want to limit the amount of mobs hit by the skill in an area of 200 radius, would it affectLimit? If yes, how does it work for lv1 to put 1 target and lv2 to reach 2 fixed targets, no more and no less?

Example: Burst Shot from archers, have: <set name="affectLimit" val="5;12"/>
I thought this parameter reached 5 to 12 mobs, however, I spawned 15 mobs and used the skill, reached 15. Can you help me?
 
P/M SKILL POWER
Physical Skill Dmg - PhysSkillsDmg
Magic Skill Dmg - MagicalSkillsDmg

P/M CRT DMG
Critical Damage - cAtk / MAGIC Critical Damage - McAtk ?

IS THAT CORRECT ?
 
Physical Skill Dmg - PhysSkillsDmg
Magic Skill Dmg - MagicalSkillsDmg

IS THAT CORRECT ?
look how the skills are made where is it
you can find what you need
Code:
<skill id="1355" levels="4" name="Prophecy of Water">
    <table name="#abnormal_time">120 180 240 300</table>
    <table name="#magicLevel">45 60 70 78</table>
   
     <table name="#regMp">1.05 1.07 1.1 1.2</table>
      <table name="#runSpd">0.72 0.74 0.76 0.8</table>
       <table name="#mAtk">1.05 1.07 1.1 1.2</table>
        <table name="#mDef">1.05 1.07 1.1 1.2</table>
         <table name="#mAtkSpd">1.05 1.07 1.1 1.2</table>
          <table name="#mCritRate">1 1.4 1.7 2</table>
           <table name="#debuffResist">2 4 6 10</table>
         
    <set name="magicType" val="MAGIC"/>
    <set name="icon" val="icon.skill1355"/>
    <set name="reuseDelay" val="120000"/>
    <set name="magicLevel" val="#magicLevel"/>
    <set name="castRange" val="400"/>
    <set name="hitTime" val="4000"/>
    <set name="hitCancelTime" val="500"/>
    <set name="mpConsume1" val="14"/>
    <set name="mpConsume2" val="58"/>
    <set name="itemConsumeId" val="3031"/>
    <set name="itemConsumeCount" val="5"/>
    <set name="target" val="TARGET_ONE"/>
    <set name="skillType" val="BUFF"/>
    <set name="operateType" val="OP_ACTIVE"/>
    <for>
        <!--
        {p_mp_regen;{all};20;per};
        {p_speed;{all};-20;per};
        {p_magical_defence;{all};20;per};
        {p_magical_attack;{all};20;per};
        {p_magic_speed;{all};20;per};
        {p_magic_critical_rate;100;per};
        {p_resist_abnormal_by_category;slot_debuff;-10;per}}
        -->
      <effect count="1" name="Buff" stackOrder="1" stackType="ancient" time="#abnormal_time" val="0">
        <mul order="0x30" stat="regMp" val="#regMp"/>
        <mul order="0x30" stat="runSpd" val="#runSpd"/>
        <mul order="0x30" stat="mAtk" val="#mAtk"/>
        <mul order="0x30" stat="mDef" val="#mDef"/>
        <mul order="0x30" stat="mAtkSpd" val="#mAtkSpd"/>
        <mul order="0x30" stat="mCritRate" val="#mCritRate"/>
        <add order="0x40" stat="debuffResist" val="#debuffResist"/>
      </effect>
    </for>
  </skill>
<skill id="1357" levels="1" name="Prophecy of Wind">
 
  <table name="#rCrit">5 7 10 20</table>
  <table name="#cAtk">1.05 1.07 1.1 1.2</table>
      <table name="#absorbDam">1 2 3 5</table>
       <table name="#pAtkSpd">1.05 1.07 1.1 1.2</table>
        <table name="#accCombat">1 2 3 4</table>
         <table name="#rEvas">1 2 3 4</table>
          <table name="#runSpd">0.9 0.92 0.94 1</table>
           <table name="#debuffResist">2 4 6 10</table>
          
 
 
   <table name="#abnormal_time">120 180 240 300</table>
    <table name="#magicLevel">45 60 70 78</table>   
    <set name="magicType" val="MAGIC"/> 
    <set name="icon" val="icon.skill1357"/> 
    <set name="reuseDelay" val="120000"/> 
    <set name="magicLevel" val="#magicLevel"/> 
    <set name="castRange" val="400"/> 
    <set name="hitTime" val="4000"/> 
    <set name="hitCancelTime" val="500"/> 
    <set name="mpConsume1" val="14"/> 
    <set name="mpConsume2" val="58"/> 
    <set name="itemConsumeId" val="3031"/> 
    <set name="itemConsumeCount" val="5"/>
    <set name="target" val="TARGET_ONE"/>
    <set name="skillType" val="BUFF"/> 
    <set name="operateType" val="OP_ACTIVE"/> 
    <for>
        <!--
        {p_hit;{all};4;diff};
        {p_avoid;{all};4;diff};
        {p_attack_speed;{all};20;per};
        {p_vampiric_attack;5};
        {p_critical_rate_position_bonus;back;20;per};
        {p_critical_damage_position;back;20;per};
        {p_resist_abnormal_by_category;slot_debuff;-10;per}}
        -->
      <effect count="1" name="Buff" stackOrder="1" stackType="ancient" time="#abnormal_time" val="0">
        <add order="0x40" stat="accCombat" val="#accCombat"/>
        <add order="0x40" stat="rEvas" val="#rEvas"/>
        <mul order="0x30" stat="pAtkSpd" val="#pAtkSpd"/>
         <mul order="0x30" stat="runSpd" val="#runSpd"/>
        <add order="0x40" stat="absorbDam" val="#absorbDam"/>
        <add order="0x40" stat="rCrit" val="#rCrit">
            <and>
                <target direction="behind"/>
            </and>
        </add>
        <mul order="0x30" stat="cAtk" val="#cAtk">
            <and>
                <target direction="behind"/>
            </and>
        </mul>
        <add order="0x40" stat="debuffResist" val="#debuffResist"/>
      </effect>
    </for>
  </skill>
 
Skill power is basic param "power"

mCriticalDamage is static - x4 from basic magic hit. Multiplayer at formulas.properties and SkillCritChanceMod
skill power - skillPower
also PvP
pvpPhysDmgBonus
pvpPhysSkillDmgBonus
pvpMagicSkillDmgBonus
 
Извиняюсь сразу, просто нигде не нашёл что искал. Может кто подскажет, как сделать так чтобы скил определённый выдавался каждому игроку при достижении 80 лвл и 100%? За ранее всем спасибо
 
Извиняюсь сразу, просто нигде не нашёл что искал. Может кто подскажет, как сделать так чтобы скил определённый выдавался каждому игроку при достижении 80 лвл и 100%? За ранее всем спасибо
ну при 100% хз, но при 80 лвле можно выдавать
 
Извиняюсь сразу, просто нигде не нашёл что искал. Может кто подскажет, как сделать так чтобы скил определённый выдавался каждому игроку при достижении 80 лвл и 100%? За ранее всем спасибо
Добавь сам скилл , и примени к классу и лвлу в нормал скилл три
 
Помогите пожалуйста, не могу понять как справильно написать, что-бы потреблял определённое кол-во итемов и выдавал определённое кол-во других итемов?

<skill id="ID" levels="1" name="NAME">
<set name="icon" val="ICON"/>
<set name="itemConsumeId" val="57"/> // Забирает адену
<set name="itemConsumeCount" val="XXXXXXX"/> // Кол-во адены
<set name="itemConsumeId" val="4037"/> // Даёт CoL
<set name="itemConsumeCount" val="XXXXXXX"/> // Кол-во CoL
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_ACTIVE"/>
<for>
</for>
</skill>
 
Помогите пожалуйста, не могу понять как справильно написать, что-бы потреблял определённое кол-во итемов и выдавал определённое кол-во других итемов?

<skill id="ID" levels="1" name="NAME">
<set name="icon" val="ICON"/>
<set name="itemConsumeId" val="57"/> // Забирает адену
<set name="itemConsumeCount" val="XXXXXXX"/> // Кол-во адены
<set name="itemConsumeId" val="4037"/> // Даёт CoL
<set name="itemConsumeCount" val="XXXXXXX"/> // Кол-во CoL
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_ACTIVE"/>
<for>
</for>
</skill>
XML:
  <skill id="1324" levels="1" name="Summon CP Potion">
    <set name="magicType" val="MAGIC"/> 
    <set name="icon" val="icon.skill1324"/> 
    <set name="reuseDelay" val="1800000"/> 
    <set name="hitTime" val="20000"/> 
    <set name="hitCancelTime" val="500"/> 
    <set name="mpConsume1" val="412"/> 
    <set name="itemConsumeId" val="1785"/> 
    <set name="itemConsumeCount" val="50"/> 
    <set name="target" val="TARGET_SELF"/> 
    <set name="skillType" val="SUMMON_ITEM"/> 
    <set name="operateType" val="OP_ACTIVE"/> 
    <set name="SummonItemId" val="5592"/> 
    <set name="SummonMinCount" val="20"/>
    <set name="isSharedClassReuse" val="true"/>
    <set name="isReuseDelayPermanent" val="true"/>
  </skill>
 
XML:
  <skill id="1324" levels="1" name="Summon CP Potion">
    <set name="magicType" val="MAGIC"/>
    <set name="icon" val="icon.skill1324"/>
    <set name="reuseDelay" val="1800000"/>
    <set name="hitTime" val="20000"/>
    <set name="hitCancelTime" val="500"/>
    <set name="mpConsume1" val="412"/>
    <set name="itemConsumeId" val="1785"/>
    <set name="itemConsumeCount" val="50"/>
    <set name="target" val="TARGET_SELF"/>
    <set name="skillType" val="SUMMON_ITEM"/>
    <set name="operateType" val="OP_ACTIVE"/>
    <set name="SummonItemId" val="5592"/>
    <set name="SummonMinCount" val="20"/>
    <set name="isSharedClassReuse" val="true"/>
    <set name="isReuseDelayPermanent" val="true"/>
  </skill>
Спасибо огромное
 
Back
Top