Page 1 of 1

Help with Quick Healing Potion

Posted: Wed Jun 10, 2009 11:35 pm
by GloBaLgr
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:
L2JDP Revision Number:

Hi @all
I have Gracia Final L2J and i whant to change the use of Quick Healing Potion.
Like 1 Potion use every 20 sec.
Not skill Duration or something like that, only that the Player can take 1 potion every 20sec.
Thnks

Code: Select all

</skill><skill id="2038" levels="1" name="Quick Healing Potion">  <set name="power" val="435"/>  <set name="target" val="TARGET_SELF"/>  <set name="skillType" val="HEAL"/>  <set name="operateType" val="OP_ACTIVE"/>  <set name="isPotion" val="true"/>    <cond msgId="113" addName="1">    <player flyMounted="False"/>

Re: Help with Quick Healing Potion

Posted: Thu Jun 11, 2009 6:27 am
by Zealar

Code: Select all

<skill id="2038" levels="1" name="Quick Healing Potion">  <set name="itemConsumeId" val="1540"/>  <set name="itemConsumeCount" val="1"/>  <set name="power" val="435"/>  <set name="target" val="TARGET_SELF"/>  <set name="skillType" val="HEAL"/>  <set name="operateType" val="OP_ACTIVE"/>  <set name="isPotion" val="true"/>  <set name="staticReuse" val="true"/>  <set name="reuseDelay" val="20000"/>  <cond msgId="113" addName="1">    <player flyMounted="False"/>  </cond></skill>

Re: Help with Quick Healing Potion

Posted: Thu Jun 11, 2009 8:48 am
by GloBaLgr
thnks my Friend it works :)