ecstasssyy Posted March 20, 2014 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 16 Reputation: 0 Joined: 03/20/14 Last Seen: June 28, 2016 Share Posted March 20, 2014 Creator- How to increase acid bomb and demonstrations by 20% Clown/gypsy- How to improve arrow vulcan, musical strike/throw arrow by 20% Whitesmith- Increase damage cart termination by 20% High priest- Holy light 20% Quote Link to comment Share on other sites More sharing options...
GM Homies Posted March 21, 2014 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 03/02/12 Last Seen: April 7, 2015 Share Posted March 21, 2014 Same problem here. Any helps? Quote Link to comment Share on other sites More sharing options...
sandbox Posted March 21, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Friday at 12:25 PM Share Posted March 21, 2014 If you want to put it on items, there's an item script for that bonus2 bSkillAtk,sk,n; Increases damage of skill sk by n% But if you want it permanently, you can increase their values in src/map/battle.c, for example.. Find 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; Increase 'skillratio' value to how much you would want to increase it. Quote Link to comment Share on other sites More sharing options...
Question
ecstasssyy
Link 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.