RN1986 Posted August 13, 2012 Group: Members Topic Count: 153 Topics Per Day: 0.03 Content Count: 439 Reputation: 2 Joined: 05/04/12 Last Seen: June 10, 2013 Share Posted August 13, 2012 how to reduce full strip chance? Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 13, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2371 Joined: 10/28/11 Last Seen: Thursday at 03:04 PM Share 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 Link to comment Share on other sites More sharing options...
RN1986 Posted August 13, 2012 Group: Members Topic Count: 153 Topics Per Day: 0.03 Content Count: 439 Reputation: 2 Joined: 05/04/12 Last Seen: June 10, 2013 Author Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted August 13, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2371 Joined: 10/28/11 Last Seen: Thursday at 03:04 PM Share 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 Link to comment Share on other sites More sharing options...
RN1986 Posted August 13, 2012 Group: Members Topic Count: 153 Topics Per Day: 0.03 Content Count: 439 Reputation: 2 Joined: 05/04/12 Last Seen: June 10, 2013 Author Share Posted August 13, 2012 (edited) ahh i see thank you very much sir Emistry Edited August 13, 2012 by RN1986 Quote Link to comment Share on other sites More sharing options...
Question
RN1986
how to reduce full strip chance?
Link to comment
Share on other sites
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.