LatSo Posted July 24, 2013 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 296 Reputation: 2 Joined: 04/11/13 Last Seen: December 22, 2020 Share Posted July 24, 2013 how to increase/decrease skill damages in src? Since manage skill damage patch by lilith is not working in the latest revision, I want to know where I can edit it inside the src. I found some but Im confuse what to edit Quote Link to comment Share on other sites More sharing options...
kangfredy Posted July 24, 2013 Group: Members Topic Count: 112 Topics Per Day: 0.02 Content Count: 388 Reputation: 4 Joined: 05/01/12 Last Seen: October 25, 2022 Share Posted July 24, 2013 edit in src/map/battle.c Quote Link to comment Share on other sites More sharing options...
LatSo Posted July 24, 2013 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 296 Reputation: 2 Joined: 04/11/13 Last Seen: December 22, 2020 Author Share Posted July 24, 2013 can you make example? I mean i found some but I dunno what to edit. For example to reduce by around 20% the damage of asura strike. Cuz I know that 1 wrong simple edit can cause big difference in game. Quote Link to comment Share on other sites More sharing options...
Jasc Posted July 24, 2013 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 270 Reputation: 20 Joined: 12/10/11 Last Seen: June 28, 2022 Share Posted July 24, 2013 (edited) case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection break; Not an exact percentage you can decrease it by, but that is the formula you see there. So if you reduce 100 into 80 for example, it will change the formula for damage. You can also reduce sp/15, I guess in this case it depends on what kind of server you are running, the max level, the max stats etc Edited August 6, 2013 by Xynvaroth Added code bbcode tags. Quote Link to comment Share on other sites More sharing options...
LatSo Posted July 25, 2013 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 296 Reputation: 2 Joined: 04/11/13 Last Seen: December 22, 2020 Author Share Posted July 25, 2013 Increasing the sp value will decrease the dmg right? Quote Link to comment Share on other sites More sharing options...
Grphx Posted August 6, 2013 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 07/25/13 Last Seen: October 4, 2016 Share Posted August 6, 2013 case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection break; Not an exact percentage you can decrease it by, but that is the formula you see there. So if you reduce 100 into 80 for example, it will change the formula for damage. You can also reduce sp/15, I guess in this case it depends on what kind of server you are running, the max level, the max stats etc in a super high rate server? 1k lvl 1k stats what would you recommend? ;o Quote Link to comment Share on other sites More sharing options...
Jasc Posted August 6, 2013 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 270 Reputation: 20 Joined: 12/10/11 Last Seen: June 28, 2022 Share Posted August 6, 2013 Increasing the sp value will decrease the dmg right? case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection break; Not an exact percentage you can decrease it by, but that is the formula you see there. So if you reduce 100 into 80 for example, it will change the formula for damage. You can also reduce sp/15, I guess in this case it depends on what kind of server you are running, the max level, the max stats etc in a super high rate server? 1k lvl 1k stats what would you recommend? ;o @Latso Yeah, dividing by a larger number decreases the output @warofares90 - Some math and calculations may be required in order to find a good formula. I guess it depends on your servers average max SP achievable by players and then determining whether you "over damage" and completely soar above the limit. Quote Link to comment Share on other sites More sharing options...
Grphx Posted August 6, 2013 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 29 Reputation: 0 Joined: 07/25/13 Last Seen: October 4, 2016 Share Posted August 6, 2013 Increasing the sp value will decrease the dmg right? > case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection break; Not an exact percentage you can decrease it by, but that is the formula you see there. So if you reduce 100 into 80 for example, it will change the formula for damage. You can also reduce sp/15, I guess in this case it depends on what kind of server you are running, the max level, the max stats etc in a super high rate server? 1k lvl 1k stats what would you recommend? ;o @Latso Yeah, dividing by a larger number decreases the output @warofares90 - Some math and calculations may be required in order to find a good formula. I guess it depends on your servers average max SP achievable by players and then determining whether you "over damage" and completely soar above the limit. ah so yea can i ask what was the formula for the previous server your worked in ( seireitei/soulsociety) so that i may use it as a basis if possible Quote Link to comment Share on other sites More sharing options...
snowflake420 Posted August 24, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 4 Reputation: 0 Joined: 11/21/12 Last Seen: October 4, 2017 Share Posted August 24, 2013 (edited) I am having problems with Enchant Deadly Poison, there is no change in damage with edp and without edp both are the same damage. but when tested on our test server it works fine like its suppose to. i am so confused Edited August 24, 2013 by snowflake420 Quote Link to comment Share on other sites More sharing options...
Question
LatSo
how to increase/decrease skill damages in src? Since manage skill damage patch by lilith is not working in the latest revision, I want to know where I can edit it inside the src.
I found some but Im confuse what to edit
Link to comment
Share on other sites
8 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.