L2JMobius

Free Users => Bug Reports => Topic started by: Matrixane on August 06, 2021, 08:02:32 AM

Title: Bug Stats Adding Points and stats into special sets
Post by: Matrixane on August 06, 2021, 08:02:32 AM
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
Title: Re: Bug Stats Adding Points and stats into special sets
Post by: hidenmagic on October 25, 2021, 04:43:51 AM
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