Venom Splasher Effect

dreinor

New member
Messages
54
Points
0
Github
dreinor
Hi.. Can someone help me on this, i would like to add an extra effect on the skill venom splasher.. I want it to work that whenever the target is on Venom Splasher Countdown, the target will receive 20% more damage from Envenom Skill.. Can someone help me on this? I tried using this code but there's a part there that i don't know what to put.. Here are the codes.. Thanks..
default_smile.png


found the answer..
default_biggrin.png
this topic can now be closed, the code was..

if( sc->data[sC_SPLASHER] ) { 
switch (skill_id){ 
case TF_POISON: 
damage += damage * 20 / 100;
 
if (--sc->data[sC_SPLASHER]->val1 == 0) 
status_change_end(bl, SC_SPLASHER, INVALID_TIMER); 
}
}
 
Last edited by a moderator:
Back
Top