Guarder Posted January 24, 2019 Posted January 24, 2019 (edited) the stats of the scroll its not aplyed if i have already buffed empower. how i i make it apply ? example i have buffed empower and i want to also get the buff from "empower scroll". to stack. near the empower from buffer. it doesnt apply <skill id="2056" levels="1" name="Scroll of Mystic Empower"> <set name="target" val="TARGET_SELF"/> <set name="hitTime" val="4000"/> <set name="skillType" val="BUFF"/> <set name="operateType" val="OP_ACTIVE"/> <set name="staticHitTime" val="true" /> <for> <effect name="Buff" time="18000" count="1" val="0" stackOrder="1.15" stackType="mAtk"> <mul order="0x30" stat="mAtk" val="1.15"/> </effect> </for> </skill> <!-- Status:Fixed Pack:l2jfrozen author:Nefer --> <skill id="2057" levels="1" name="Scroll of Might"> <set name="target" val="TARGET_SELF"/> <set name="hitTime" val="4000"/> <set name="skillType" val="BUFF"/> <set name="operateType" val="OP_ACTIVE"/> <set name="staticHitTime" val="true" /> <for> <effect name="Buff" time="18000" count="1" val="0" stackOrder="1.15" stackType="pAtk"> <mul order="0x30" stat="pAtk" val="1.15"/> </effect> </for> </skill> Edited January 24, 2019 by KIDutz
0 SweeTs Posted January 24, 2019 Posted January 24, 2019 Simply change the stackType, they have to differ. Call it anyhow you like.
0 lin2PK Posted January 24, 2019 Posted January 24, 2019 13 minutes ago, KIDutz said: val="1.15" This is the stat number that the buff scoll gives, just increase for higher stats or decrease this number for less stats. Now for 15% just calculate it and find out what number it is..
0 Guarder Posted January 24, 2019 Author Posted January 24, 2019 2 minutes ago, lin2PK said: This is the stat number that the buff scoll gives, just increase for higher stats or decrease this number for less stats. Now for 15% just calculate it and find out what number it is.. it has no effect for empower scroll only if i leave it like original "1.75" but 75% +m.atk is too much.when i try to change it on 15% it has no efect
0 Guarder Posted January 24, 2019 Author Posted January 24, 2019 (edited) ahhh the stats of the scroll its not aplyed if i have already buffed empower. how i i make it apply ? example i have buffed empower and i want to also get the buff from "empower scroll" edit: FIXED,added stats to scroll of mana regeneration, cuz that scoll efect doesnt replace any buff i have on buffer... Edited January 24, 2019 by KIDutz
0 Guarder Posted January 24, 2019 Author Posted January 24, 2019 16 minutes ago, SweeTs said: Simply change the stackType, they have to differ. Call it anyhow you like. yes it works ! thank you
Question
Guarder
the stats of the scroll its not aplyed if i have already buffed empower. how i i make it apply ?
example i have buffed empower and i want to also get the buff from "empower scroll". to stack. near the empower from buffer.
it doesnt apply
<skill id="2056" levels="1" name="Scroll of Mystic Empower">
Edited by KIDutz<set name="target" val="TARGET_SELF"/>
<set name="hitTime" val="4000"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_ACTIVE"/>
<set name="staticHitTime" val="true" />
<for>
<effect name="Buff" time="18000" count="1" val="0" stackOrder="1.15" stackType="mAtk">
<mul order="0x30" stat="mAtk" val="1.15"/>
</effect>
</for>
</skill>
<!-- Status:Fixed Pack:l2jfrozen author:Nefer -->
<skill id="2057" levels="1" name="Scroll of Might">
<set name="target" val="TARGET_SELF"/>
<set name="hitTime" val="4000"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_ACTIVE"/>
<set name="staticHitTime" val="true" />
<for>
<effect name="Buff" time="18000" count="1" val="0" stackOrder="1.15" stackType="pAtk">
<mul order="0x30" stat="pAtk" val="1.15"/>
</effect>
</for>
</skill>
5 answers to this question
Recommended Posts