Page 1 of 1

adding skill on armor

Posted: Wed Jun 17, 2009 11:08 am
by Kedon
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision 3131:
L2JDP Revision 6208:

Good Morning guys i tryed to added an effekt to a simple tattoo like chant of vampire level 1 so i have this

<item id="496" name="Tattoo of Divine">
<for>
<add val="131" order="0x10" stat="pDef"/>
<enchant val="0" order="0x0C" stat="pDef"/>
</for>
</item>

and in the Database i added at skills = 1310-1;

i tested it ingame but is isn't working someone know how to do this or maybe what my error is ?

Re: adding skill on armor

Posted: Tue Jun 23, 2009 7:35 pm
by Kedon
still not found how to do this :) oh maybe this is for databack support :/ sry if i'm wrong

Re: adding skill on armor

Posted: Tue Jun 23, 2009 9:21 pm
by Bloodshed
instead of adding the skill, try to add this in the armor file at the tattoo

Code: Select all

<add order="0x40" stat="absorbDam" val="6"/>
so it will look like:

Code: Select all

<item id="496" name="Tattoo of Divine">  <for>    <add val="131" order="0x10" stat="pDef"/>    <add order="0x40" stat="absorbDam" val="6"/>    <enchant val="0" order="0x0C" stat="pDef"/>  </for></item>
if you add the skill, it will show up in the user's skill window, and he will be able to cast it like a buff.

Re: adding skill on armor

Posted: Thu Jun 25, 2009 8:19 pm
by Kedon
oh thx Blood :) i searched for this thing in the xml but there was to much :P will test this an edit when done :)