L2JMobius

Dwelling of Spirits Bug Stats Adding Points and stats into special sets

Matrixane · 2 · 4668

Offline Matrixane

  • Heir
  • **
    • Posts: 17
Greetings, reffered to Stats points characters. not working. when add  points no added and consume it
CHARACTERS BASE STATS.

Any how can fix it? thanks in advance


Offline hidenmagic

  • Vassal
  • *
    • Posts: 1
Example about items:
Code: [Select]
<item id="93315" name="Leather Armor of Lightning" type="Armor"> on items\93300-93399.xml file
You can see it have a skill
Code: [Select]
<skill id="50343" level="1" /> <!-- Leather Armor of Lightning -->But in file skills\50300-50399.xml
The skills is not declare
Code: [Select]
<skill id="50343" toLevel="1" name="Leather Armor of Lightning">
<!-- Armor imbued with the power of lightning. <Effect> STR +1 DEX +1 Weight limit +1500 M. Def. +15 Max HP +80 Max MP +40 Stun Resistance +20% Paralysis Resistance +20% Sleep Resistance +20% Hold Resistance +20% Silence Resistance +20% Fear Resistance +20% -->
<icon>icon.skill0000</icon>
<operateType>P</operateType>
You need to add effects for skills like:
Code: [Select]
<skill id="50343" toLevel="1" name="Leather Armor of Lightning">
<!-- Armor imbued with the power of lightning. <Effect> STR +1 DEX +1 Weight limit +1500 M. Def. +15 Max HP +80 Max MP +40 Stun Resistance +20% Paralysis Resistance +20% Sleep Resistance +20% Hold Resistance +20% Silence Resistance +20% Fear Resistance +20% -->
<icon>icon.skill0000</icon>
<operateType>P</operateType>
<effects>
<effect name="StatUp">
<amount>1</amount>
<stat>STR</stat>
</effect>
<effect name="StatUp">
<amount>1</amount>
<stat>DEX</stat>
</effect>
<effect name="MagicalDefence">
<amount>15</amount>
<mode>PER</mode>
</effect>
<effect name="MaxHp">
<amount>80</amount>
<mode>DIFF</mode>
</effect>
</effects>
</skill>
This example i did not add
Code: [Select]
Stun Resistance +20% Paralysis Resistance +20% Sleep Resistance +20% Hold Resistance +20% Silence Resistance +20% Fear Resistance +20%This is the way how to fix. I dont know is there any way for faster fix. Anybody know, please share :D