Page 1 of 1
XML help
Posted: Fri Aug 15, 2014 2:15 pm
by zimmer
L2J Revision 6602:
L2JDP Revision 10394:
Hello my friends.
I have a doubt about parameters 0x08, 0x10 and 0x40 in XML files. What each one makes?
Sorry if this question already been posted on forum.
Re: XML help
Posted: Fri Aug 15, 2014 4:57 pm
by UnAfraid
If u were me reading this topic knowing that l2j doesn't have 1 xml what would u understand by this description (If that can be description at all)
Be more specific please which xml which element which attribute, where's located.
Re: XML help
Posted: Fri Aug 15, 2014 6:22 pm
by Zealar
That is order in hex value. Is used to say what when is calculate.
For example if order is lower will be calculate first.
Let say you got maxMp 1 for default and got 2 values for extra mana but one is static add and other one is mul.
First example
Order 0x16 mul 5
Order 0x08 add 6
(1+6) * 5 =35
Second example
Order 0x16 add 6
Order 0x08 mul 5
(1 * 5) + 6 = 11
Re: XML help
Posted: Mon Aug 18, 2014 4:05 am
by zimmer
Thank you very much
