cahadeyelo Posted December 26, 2014 Group: Members Topic Count: 70 Topics Per Day: 0.02 Content Count: 172 Reputation: 1 Joined: 11/13/14 Last Seen: 20 hours ago Share Posted December 26, 2014 (edited) anyone knows how to put Maximum cap On asura and Final strike with 2.5mil damage (not on based on stats), Thanks ,, Edited December 26, 2014 by cahadeyelo Quote Link to comment Share on other sites More sharing options...
Conflicts Posted December 26, 2014 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 317 Reputation: 63 Joined: 11/13/11 Last Seen: March 23 Share Posted December 26, 2014 It's currently not possible without a custom source modification. So this topic belongs to Source Support. Also, if you're aiming to put a damage cap on several skills, you might want to consider this Maximum Damage mod by Cydh. Quote Link to comment Share on other sites More sharing options...
cawogeek Posted December 26, 2014 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 27 Reputation: 1 Joined: 06/25/12 Last Seen: Yesterday at 02:02 AM Share Posted December 26, 2014 (edited) inside the src/map/battle.c do it like this and put it inside the battle_calc_damage and recompile your server... //Add Case <Skill_code>: for cap damage switch ( skill_id ) { case MO_EXTREMITYFIST: case NJ_ISSEN: damage = cap_value(damage,0,350000); break; case HW_MAGICCRASHER: damage = cap_value(damage,0,9000); break; case ASC_BREAKER: damage = cap_value(damage,0,25000); break; case AS_SONICBLOW: damage = cap_value(damage,0,150000); break; case KN_BOWLINGBASH: case GS_RAPIDSHOWER: case GS_TRACKING: case MO_INVESTIGATE: case GS_FULLBUSTER: case CR_ACIDDEMONSTRATION: case SN_SHARPSHOOTING: case WS_CARTTERMINATION: case MC_MAMMONITE: case WZ_STORMGUST: case WZ_METEOR: case AS_GRIMTOOTH: case GS_DESPERADO: case SM_BASH: damage = cap_value(damage,0,50000); break; } return damage; Edited December 26, 2014 by cawogeek Quote Link to comment Share on other sites More sharing options...
Question
cahadeyelo
anyone knows how to put Maximum cap On asura and Final strike with 2.5mil damage (not on based on stats), Thanks ,,
Edited by cahadeyeloLink to comment
Share on other sites
2 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.