Hyoru Posted July 8, 2012 Posted July 8, 2012 Hi, how can i edit Rejected Sword to give ATKRATE ? I mean +20% Atk Rate, but still doing the normal effect plus 20% ATK. and how can i remove the sonic blow effect of sinx soul link? Thanks Adv. Quote
Mystery Posted July 9, 2012 Posted July 9, 2012 (edited) For the Sonic Blow part, go here: https://rathena.svn....rc/map/battle.c Find: if (sc && sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_ASSASIN) ATK_ADDRATE(map_flag_gvg(src->m)?25:100); //+25% dmg on woe/+100% dmg on nonwoe This is the whole code: case AS_SONICBLOW: if (sc && sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_ASSASIN) ATK_ADDRATE(map_flag_gvg(src->m)?25:100); //+25% dmg on woe/+100% dmg on nonwoe if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) ATK_ADDRATE(10); And just remove this part: if (sc && sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_ASSASIN) ATK_ADDRATE(map_flag_gvg(src->m)?25:100); //+25% dmg on woe/+100% dmg on nonwoe So that you're left with: case AS_SONICBLOW: if(sd && pc_checkskill(sd,AS_SONICACCEL)>0) ATK_ADDRATE(10); That should stop the extra damage output from Soul Link spirit. Also, you could always lower the damage. As for Reject sword.. I'm not quite clear on what you really mean =/ Edited July 9, 2012 by Mysterious 1 Quote
Hyoru Posted July 9, 2012 Author Posted July 9, 2012 Thank you so much! about the rejected sword, The atq power of Stalker are really low, and i want to raise it with some skill that stalker already have, besides the normal effect + 20% damage. Don't need to be Rejected Sword, can be any skill of Stalker, Passive too. Just need to add 20% atq damage. Thanks adv, Hyoru. Quote
Mystery Posted July 9, 2012 Posted July 9, 2012 Well.. still looking in: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/battle.c You could always raise the power to a skill in this configuration. So going down towards RG_RAID, it states: case RG_RAID: skillratio += 40*skill_lv; break; You could always change that 40 to a 100 or w.e suits your needs. But don't forget that the power increases * (times) the skill level. 1 Quote
Hyoru Posted July 9, 2012 Author Posted July 9, 2012 but that is the atkrate of skill, cant give for basic attacks? Quote
Mystery Posted July 9, 2012 Posted July 9, 2012 I think this is what you're looking for then: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/job_db1.txt Increase the attack damage based on the weapon being handled. 1 Quote
Hyoru Posted July 9, 2012 Author Posted July 9, 2012 sorry my mistake. Solved! Just one more thing, based on skillratio += 40*skill_lv; where can i raise the damage of Magic Crasher? Thanks so much Mysterious! Quote
Mystery Posted July 9, 2012 Posted July 9, 2012 (edited) sorry my mistake. Solved! Just one more thing, based on skillratio += 40*skill_lv; where can i raise the damage of Magic Crasher? Thanks so much Mysterious! No problem lol I'm not 100% sure.. but I think you can make it yourself.. by finding: case HW_NAPALMVULCAN: skillratio += 10*skill_lv-30; break; and adding this: case HW_MAGICCRASHER: skillratio += 40*skill_lv; break; right under it =/ I'm not 100% sure this will work so test it at your own will. Edited July 9, 2012 by Mysterious 1 Quote
Question
Hyoru
Hi,
how can i edit Rejected Sword to give ATKRATE ? I mean +20% Atk Rate, but still doing the normal effect plus 20% ATK.
and how can i remove the sonic blow effect of sinx soul link?
Thanks Adv.
9 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.