Rage Guy Posted June 11, 2013 Group: Members Topic Count: 113 Topics Per Day: 0.03 Content Count: 354 Reputation: 3 Joined: 02/17/13 Last Seen: August 14, 2016 Share Posted June 11, 2013 i want make storm gust damage only 80% Quote Link to comment Share on other sites More sharing options...
Jaburak Posted June 11, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share Posted June 11, 2013 trunk/src/map/battle.c Find: case WZ_STORMGUST: skillratio += 40*skill_lv; break; Replace: case WZ_STORMGUST: skillratio += 30*skill_lv; break; Quote Link to comment Share on other sites More sharing options...
Rage Guy Posted June 11, 2013 Group: Members Topic Count: 113 Topics Per Day: 0.03 Content Count: 354 Reputation: 3 Joined: 02/17/13 Last Seen: August 14, 2016 Author Share Posted June 11, 2013 its less that 80% its like 75% i want it 80% Quote Link to comment Share on other sites More sharing options...
DeadlySilence Posted June 11, 2013 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 181 Reputation: 53 Joined: 04/07/13 Last Seen: August 23, 2014 Share Posted June 11, 2013 Change the 30 to 32, as 32 is 80% of 40. Quote Link to comment Share on other sites More sharing options...
Patskie Posted June 12, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 57 minutes ago Share Posted June 12, 2013 40*10 = 400 = 100% case WZ_STORMGUST: skillratio += 40*skill_lv; break; Replace it with : ( 32 * 10 ) = 320 = 80% case WZ_STORMGUST: skillratio += 32*skill_lv; break; 20% of 400 is 80. 80*4 = 80% = 320 Quote Link to comment Share on other sites More sharing options...
Question
Rage Guy
i want make storm gust damage
only 80%
Link to comment
Share on other sites
4 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.