trizzy Posted June 28, 2015 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 92 Reputation: 2 Joined: 01/04/15 Last Seen: April 27, 2021 Share Posted June 28, 2015 i've tried this but nothing happen. src/battle.c search case MO_EXTREMITYFIST:skillratio += 100*(7 + sstatus->sp/10);skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protectionbreak; change skillratio += 100*(7 + sstatus->sp/10); to skillratio += 100*(7 + min(sstatus->sp,6000)/10); Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 29, 2015 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 4 hours ago Share Posted June 29, 2015 conf/battle/player.conf#L82 // Maximum SP. (Default is 1000000) max_sp: 1000000 1 Quote Link to comment Share on other sites More sharing options...
Stolao Posted June 28, 2015 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted June 28, 2015 try case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(6000,skillratio); //We stop at roughly 50k SP for overflow protection break; Quote Link to comment Share on other sites More sharing options...
trizzy Posted June 29, 2015 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 92 Reputation: 2 Joined: 01/04/15 Last Seen: April 27, 2021 Author Share Posted June 29, 2015 try case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(6000,skillratio); //We stop at roughly 50k SP for overflow protection break; Nothing Changes Sir. case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(6000,skillratio); //We stop at roughly 50k SP for overflow protection break; i delete also this code and recompile my server and login in game my SP still the same and nothing changes! Help please. T_T Quote Link to comment Share on other sites More sharing options...
Stolao Posted June 29, 2015 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted June 29, 2015 Are you trying to change your max sp limit for your character or the sp limit for the asura calculation? This was the later, the former would be in your conf files, I believe player.conf stat.conf or battle.conf forget which and on phone 1 Quote Link to comment Share on other sites More sharing options...
Stolao Posted June 29, 2015 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: March 19 Share Posted June 29, 2015 conf/battle/player.conf#L82 // Maximum SP. (Default is 1000000) max_sp: 1000000 Ya what he said. conf/battle/player.conf#L82 // Maximum SP. (Default is 1000000) max_sp: 1000000 Ya what he said. 1 Quote Link to comment Share on other sites More sharing options...
trizzy Posted June 29, 2015 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 92 Reputation: 2 Joined: 01/04/15 Last Seen: April 27, 2021 Author Share Posted June 29, 2015 Thanks Emistry and Stolao. Quote Link to comment Share on other sites More sharing options...
Question
trizzy
i've tried this but nothing happen.
src/battle.c search
case MO_EXTREMITYFIST:
skillratio += 100*(7 + sstatus->sp/10);
skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection
break;
change
skillratio += 100*(7 + sstatus->sp/10);
to
skillratio += 100*(7 + min(sstatus->sp,6000)/10);
Link to comment
Share on other sites
6 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.