Page 1 of 2

Enchant armor glow effect (+6 / +8)

Posted: Sun Jan 18, 2015 6:54 pm
by ChaosPaladin
This glow should be independent from armorsets. In l2j same if you remove SLOT_CHEST = 0x0400, the glow disappears.

Retail: when removing any items from

Code: Select all

SLOT_HEAD = 0x0040;
SLOT_GLOVES = 0x0200;
SLOT_CHEST = 0x0400;
SLOT_LEGS = 0x0800;
SLOT_FEET = 0x1000;
the glow should be off

Re: Enchant armor glow effect (+6 / +8)

Posted: Sun Jan 18, 2015 8:57 pm
by UnAfraid
Can you provide retail screenshots with partially enchanted set and glowing animation?

Re: Enchant armor glow effect (+6 / +8)

Posted: Sun Jan 18, 2015 9:41 pm
by ChaosPaladin
No :( , but I write a bug report based on testing Ertheia on Innova servers (during character creation was given Eternal +8 PvP Armor) and there it worked that way, I am sure that differences NCWest servers from Innova in this case no.

Image

Re: Enchant armor glow effect (+6 / +8)

Posted: Sun Jan 18, 2015 11:08 pm
by ChaosPaladin
Okay, I found the problem, in l2j armorsets begins to work only when equip SLOT_CHEST = 0x0400; and other parts. In Ertheia now another system: Armorset works if equipped with any 2 part

Image
Image
Image
Image
Image

p.s Sorry, if you can't explain, I'm from Russia and my English level is low

Re: Enchant armor glow effect (+6 / +8)

Posted: Tue Jan 20, 2015 12:32 am
by UnAfraid
Oh lol i though on retail u need to have the chest equipped in order to lock up a set.
I'll rework it later..

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 11:35 am
by Sdw
What happens when you get 2 pieces of different sets +6 in terms of bonuses and glow ? :D

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 11:44 am
by ChaosPaladin
Sdw wrote:What happens when you get 2 pieces of different sets +6 in terms of bonuses and glow ? :D
No, I have above described what with the glow all right, but skill from set appears only when equipped slot CHEST, on retail skill set appears when the outfit of ANY 2 slots

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 11:45 am
by Sdw
Yeah ok I got that, what happens if you go 2 pieces of 2 sets, both apply ?

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 12:40 pm
by ChaosPaladin
Sdw wrote:Yeah ok I got that, what happens if you go 2 pieces of 2 sets, both apply ?
Nothing will happen (no glow) The glow appears only when the equipment parts that come in the set and registered in armorsets xml's

p.s damn Google translator

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 12:50 pm
by UnAfraid
He means on retail not in l2j :)

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 12:50 pm
by Sdw
I meant in terms of skills actually, forget about the glow, does both set bonus applies ?

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 1:03 pm
by ChaosPaladin
Sdw wrote:I meant in terms of skills actually, forget about the glow, does both set bonus applies ?
Retail: When equipped for example

Code: Select all

<legs id="19556" /> <!-- Seraph Gaiters - Attack Type / Heavy -->
<gloves id="19557" /> <!-- Seraph Gauntlets - Attack Type / Heavy -->
should include skill

Code: Select all

<skill id="13069" level="1" minimumPieces="2" />
When

Code: Select all

<gloves id="19557" /> <!-- Seraph Gauntlets - Attack Type / Heavy -->
<feet id="19558" /> <!-- Seraph Boots - Attack Type / Heavy -->
<legs id="19556" /> <!-- Seraph Gaiters - Attack Type / Heavy -->
include skill

Code: Select all

<skill id="13069" level="2" minimumPieces="3" />
and etc...

in L2j

Code: Select all

<chest id="19555" /> <!-- Seraph Breastplate - Attack Type / Heavy -->
<gloves id="19557" /> <!-- Seraph Gauntlets - Attack Type / Heavy -->
=skill

Code: Select all

<skill id="13069" level="1" minimumPieces="2" />

Code: Select all

<chest id="19555" /> <!-- Seraph Breastplate - Attack Type / Heavy -->
<feet id="19558" /> <!-- Seraph Boots - Attack Type / Heavy -->
<legs id="19556" /> <!-- Seraph Gaiters - Attack Type / Heavy -->
= skill

Code: Select all

<skill id="13069" level="2" minimumPieces="3" />
In short, on retail skill from set should appear when equipped with ANY 2 part for emergence

Code: Select all

<skill id="13069" level="1" minimumPieces="2" />
, in l2j must be equipped with CHEST slot for the emergence skill

Code: Select all

<skill id="13069" level="1" minimumPieces="2" />
.

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 1:14 pm
by Sdw
Sorry I get that.

The real question is, and I'm gonna test it myself I guess, what happens if I got 2 pieces of Eternal, and 2 pieces of Seraph. Do I get both bonus set skill level 1 ?

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 1:24 pm
by ChaosPaladin
Sdw wrote:Sorry I get that.

The real question is, and I'm gonna test it myself I guess, what happens if I got 2 pieces of Eternal, and 2 pieces of Seraph. Do I get both bonus set skill level 1 ?
Nope, Will work skill from set, 2 parts of which put the last

Re: Enchant armor glow effect (+6 / +8)

Posted: Wed Jan 21, 2015 1:27 pm
by Sdw
See how important is to actually try, details are important.

UnAfraid just checked on retail, and with 3 pieces of Twilight and 2 of Seraph he got the 2 bonus sets, twilight level 2 and seraph level 1.