Enchant armor glow effect (+6 / +8)

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
There is no support for other server builds than the official provided by l2jserver.com
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

Enchant armor glow effect (+6 / +8)

Post 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
User avatar
UnAfraid
L2j Veteran
L2j Veteran
Posts: 4199
Joined: Mon Jul 23, 2007 4:25 pm
Location: Bulgaria
Contact:

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

Post by UnAfraid »

Can you provide retail screenshots with partially enchanted set and glowing animation?
Image
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

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

Post 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
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

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

Post 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
User avatar
UnAfraid
L2j Veteran
L2j Veteran
Posts: 4199
Joined: Mon Jul 23, 2007 4:25 pm
Location: Bulgaria
Contact:

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

Post 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..
Image
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

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

Post by Sdw »

What happens when you get 2 pieces of different sets +6 in terms of bonuses and glow ? :D
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

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

Post 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
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

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

Post by Sdw »

Yeah ok I got that, what happens if you go 2 pieces of 2 sets, both apply ?
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

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

Post 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
User avatar
UnAfraid
L2j Veteran
L2j Veteran
Posts: 4199
Joined: Mon Jul 23, 2007 4:25 pm
Location: Bulgaria
Contact:

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

Post by UnAfraid »

He means on retail not in l2j :)
Image
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

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

Post by Sdw »

I meant in terms of skills actually, forget about the glow, does both set bonus applies ?
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

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

Post 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" />
.
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

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

Post 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 ?
ChaosPaladin
Posts: 39
Joined: Wed Feb 19, 2014 12:13 pm

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

Post 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
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

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

Post 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.
Post Reply