pumks Posted September 20, 2017 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 19 Reputation: 0 Joined: 02/18/17 Last Seen: November 17, 2018 Share Posted September 20, 2017 Hi rAthena I need help for increase dmg Cart Termination White Smith skill anyone help me pls .... Quote Link to comment Share on other sites More sharing options...
0 crazyarashi Posted September 20, 2017 Group: Developer Topic Count: 50 Topics Per Day: 0.02 Content Count: 776 Reputation: 239 Joined: 02/11/17 Last Seen: 1 hour ago Share Posted September 20, 2017 case WS_CARTTERMINATION: i = 10 * (16 - skill_lv); if (i < 1) i = 1; //Preserve damage ratio when max cart weight is changed. if (sd && sd->cart_weight) skillratio += sd->cart_weight / i * 80000 / battle_config.max_cart_weight - 100; else if (!sd) skillratio += 80000 / i - 100; break; Find this line in battle.c :)) Quote Link to comment Share on other sites More sharing options...
0 pumks Posted September 20, 2017 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 19 Reputation: 0 Joined: 02/18/17 Last Seen: November 17, 2018 Author Share Posted September 20, 2017 11 hours ago, crazyarashi said: case WS_CARTTERMINATION: i = 10 * (16 - skill_lv); if (i < 1) i = 1; //Preserve damage ratio when max cart weight is changed. if (sd && sd->cart_weight) skillratio += sd->cart_weight / i * 80000 / battle_config.max_cart_weight - 100; else if (!sd) skillratio += 80000 / i - 100; break; Find this line in battle.c :)) And then which one must be edit Bro? Can u give me example pls? Quote Link to comment Share on other sites More sharing options...
0 Santafe Posted September 24, 2017 Group: Members Topic Count: 91 Topics Per Day: 0.02 Content Count: 325 Reputation: 35 Joined: 06/01/13 Last Seen: October 7, 2019 Share Posted September 24, 2017 On 9/20/2017 at 8:06 AM, pumks said: Hi rAthena I need help for increase dmg Cart Termination White Smith skill anyone help me pls .... There are 2 ways to do so. 1. You increase max_cart_weight at this directory >/conf/battle/player.conf and your CT damage increases accordingly. 2. Read the skill description and do what crazyarashi wrote but you need to do unnecessary calculations. the % of weight considered as damage increases as level of skill increases so u just reduce the "16" in i = 10 * (16 - skill_lv); Note: Make sure u dont change 16 to any value below 11 this might cause problems as the CT will do 0 dmg if its 10 or below. Quote Link to comment Share on other sites More sharing options...
0 THPO Posted September 25, 2017 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 45 Reputation: 7 Joined: 08/15/14 Last Seen: May 8, 2020 Share Posted September 25, 2017 another method you could do: https://github.com/rathena/rathena/blob/master/db/skill_damage_db.txt Quote Link to comment Share on other sites More sharing options...
0 pumks Posted September 30, 2017 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 19 Reputation: 0 Joined: 02/18/17 Last Seen: November 17, 2018 Author Share Posted September 30, 2017 On Sunday, September 24, 2017 at 11:56 PM, Santafe said: There are 2 ways to do so. 1. You increase max_cart_weight at this directory >/conf/battle/player.conf and your CT damage increases accordingly. 2. Read the skill description and do what crazyarashi wrote but you need to do unnecessary calculations. the % of weight considered as damage increases as level of skill increases so u just reduce the "16" in i = 10 * (16 - skill_lv); Note: Make sure u dont change 16 to any value below 11 this might cause problems as the CT will do 0 dmg if its 10 or below. It's work bro to increase damage, but i want make damage high and then low by Hit chance not stay on high dmg, help me plss.... Quote Link to comment Share on other sites More sharing options...
0 Santafe Posted September 30, 2017 Group: Members Topic Count: 91 Topics Per Day: 0.02 Content Count: 325 Reputation: 35 Joined: 06/01/13 Last Seen: October 7, 2019 Share Posted September 30, 2017 3 hours ago, pumks said: It's work bro to increase damage, but i want make damage high and then low by Hit chance not stay on high dmg, help me plss.... I dont understand what your saying but im guessing u mean increase the crit rate of CT. Any skill will miss if the HIT is below the flee rate unless u have seeking atk(Hits flee opponents even with low hit). If ur talking about critical damage then make a weapon that is exclusive to Whitesmith and use this bonus : bonus bCriticalRate,n; and replace "n" with any number. If u say 1 = 1% crit rate 2 = 2% and so on. Hope this helps. I dont think theres any other way to vary the damage like u mentioned. Quote Link to comment Share on other sites More sharing options...
0 pumks Posted October 1, 2017 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 19 Reputation: 0 Joined: 02/18/17 Last Seen: November 17, 2018 Author Share Posted October 1, 2017 (edited) 3 hours ago, Santafe said: I dont understand what your saying but im guessing u mean increase the crit rate of CT. Any skill will miss if the HIT is below the flee rate unless u have seeking atk(Hits flee opponents even with low hit). If ur talking about critical damage then make a weapon that is exclusive to Whitesmith and use this bonus : bonus bCriticalRate,n; and replace "n" with any number. If u say 1 = 1% crit rate 2 = 2% and so on. Hope this helps. I dont think theres any other way to vary the damage like u mentioned. i mean my damage after i edit skill formula in src file from i = 10 * (16 - skill_lv); to i = 10 * (14 - skill_lv); that make my CT damage increased to 999k, can you help me to decrease that to 50k or 35k? Edited October 1, 2017 by pumks Quote Link to comment Share on other sites More sharing options...
0 Santafe Posted October 1, 2017 Group: Members Topic Count: 91 Topics Per Day: 0.02 Content Count: 325 Reputation: 35 Joined: 06/01/13 Last Seen: October 7, 2019 Share Posted October 1, 2017 13 hours ago, pumks said: i mean my damage after i edit skill formula in src file from i = 10 * (16 - skill_lv); to i = 10 * (14 - skill_lv); that make my CT damage increased to 999k, can you help me to decrease that to 50k or 35k? By making it 14 u increased the skill's damage. Try to make the 14 into 18 to 22 or more depending on wat the damage output is. Quote Link to comment Share on other sites More sharing options...
0 pumks Posted November 20, 2017 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 19 Reputation: 0 Joined: 02/18/17 Last Seen: November 17, 2018 Author Share Posted November 20, 2017 On 1/10/2017 at 9:13 PM, Santafe said: By making it 14 u increased the skill's damage. Try to make the 14 into 18 to 22 or more depending on wat the damage output is. if i make 18 - 22 that will be down my dmg till 2k dmg Quote Link to comment Share on other sites More sharing options...
Question
pumks
Hi rAthena I need help for increase dmg Cart Termination White Smith skill anyone help me pls ....
Link to comment
Share on other sites
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.