Page 1 of 1
Skill/Buff Items
Posted: Sun Oct 02, 2011 3:06 pm
by PapaHarni
Version : Freya
Hello,
can anyone please tell me the icon link for skills/buffs like Dances & Songs icon.
With friendly greet
PapaHarni
Re: Skill/Buff Items
Posted: Mon Oct 03, 2011 12:39 am
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.
Re: Skill/Buff Items
Posted: Mon Oct 03, 2011 2:17 pm
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.

Re: Skill/Buff Items
Posted: Mon Oct 03, 2011 9:37 pm
by Zoey76
It works:
Code: Select all
<img src="Icon.skill0271" width="32" height="32" /> <!-- Dance of the Warrior -->
Have fun

Re: Skill/Buff Items
Posted: Mon Oct 03, 2011 9:40 pm
by pmq
custom_npc_buffer.sql <~ no add skill ?
Re: Skill/Buff Items
Posted: Mon Oct 03, 2011 9:49 pm
by PapaHarni
Zoey76 wrote:It works:
Code: Select all
<img src="Icon.skill0271" width="32" height="32" /> <!-- Dance of the Warrior -->
Have fun

Ahh okay , it's the Icon.skill
0271 where is not given in my history buffer

Thank you very much.