Emistry Posted August 13, 2012 Posted August 13, 2012 perhap would be this part ? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/skill.c //Rate in percent if ( skillid == ST_FULLSTRIP ) { i = 5 + 2*skilllv + (sstatus->dex - tstatus->dex)/5; } else if( skillid == SC_STRIPACCESSARY ) { i = 12 + 2 * skilllv + (sstatus->dex - tstatus->dex)/5; } else { i = 5 + 5*skilllv + (sstatus->dex - tstatus->dex)/5; } if (i < 5) i = 5; //Minimum rate 5% Quote
RN1986 Posted August 13, 2012 Author Posted August 13, 2012 sir Emistry how can i deacrese it? i will just change thi? if (i < 5) i = 5; //Minimum rate 5% into exmaple? if (i < 2) i = 2; //Minimum rate 2% Quote
Emistry Posted August 13, 2012 Posted August 13, 2012 change the formula for rate calculation here... i = 5 + 2*skilllv + (sstatus->dex - tstatus->dex)/5; the part u mention above just for Minimum Rate... Quote
RN1986 Posted August 13, 2012 Author Posted August 13, 2012 (edited) ahh i see thank you very much sir Emistry Edited August 13, 2012 by RN1986 Quote
Question
RN1986
how to reduce full strip chance?
4 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.