Skill/Buff Items

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
PapaHarni
Posts: 31
Joined: Wed Jun 04, 2008 3:24 pm
Location: Germany/NRW/H.a.S.
Contact:

Skill/Buff Items

Post by PapaHarni »

Version : Freya

Hello,

can anyone please tell me the icon link for skills/buffs like Dances & Songs icon.

With friendly greet
PapaHarni
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: Skill/Buff Items

Post by Zoey76 »

Code: Select all

<img src="Icon.skill1356" width="32" height="32" /> <!-- Prophecy of Fire -->
So you need to search for the Skill Id and replace it on the src attribute, in the example is 1356.

You can also use it as button, but won't work on High Five due to forced hover effect for buttons.

Code: Select all

<button action="YOUR_ACTION" value="" width="32" height="32" back="Icon.skill1356" fore="Icon.skill1356">
You can play around with table background and other html features and make buttons work.
Powered by Eclipse 4.34 ๐ŸŒŒ | Eclipse Temurin 21 โ˜• | MariaDB 11.3.2 ๐Ÿ—ƒ๏ธ | L2J Server 2.6.3.0 - High Five ๐Ÿš€

๐Ÿ”— Join our Discord! ๐ŸŽฎ๐Ÿ’ฌ
PapaHarni
Posts: 31
Joined: Wed Jun 04, 2008 3:24 pm
Location: Germany/NRW/H.a.S.
Contact:

Re: Skill/Buff Items

Post by PapaHarni »

Zoey76 wrote:

Code: Select all

<img src="Icon.skill1356" width="32" height="32" /> <!-- Prophecy of Fire -->
So you need to search for the Skill Id and replace it on the src attribute, in the example is 1356.
i know , but is not work with Dance and Songs Buff. :-(
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: Skill/Buff Items

Post by Zoey76 »

It works:

Code: Select all

<img src="Icon.skill0271" width="32" height="32" /> <!-- ย  ย Dance of the Warrior -->
Have fun :P
Powered by Eclipse 4.34 ๐ŸŒŒ | Eclipse Temurin 21 โ˜• | MariaDB 11.3.2 ๐Ÿ—ƒ๏ธ | L2J Server 2.6.3.0 - High Five ๐Ÿš€

๐Ÿ”— Join our Discord! ๐ŸŽฎ๐Ÿ’ฌ
pmq
Posts: 181
Joined: Mon Sep 08, 2008 11:05 pm

Re: Skill/Buff Items

Post by pmq »

custom_npc_buffer.sql <~ no add skill ?
PapaHarni
Posts: 31
Joined: Wed Jun 04, 2008 3:24 pm
Location: Germany/NRW/H.a.S.
Contact:

Re: Skill/Buff Items

Post by PapaHarni »

Zoey76 wrote:It works:

Code: Select all

<img src="Icon.skill0271" width="32" height="32" /> <!-- ย  ย Dance of the Warrior -->
Have fun :P
Ahh okay , it's the Icon.skill0271 where is not given in my history buffer :-) Thank you very much.
Post Reply