Radian Posted August 17, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted August 17, 2014 (edited) How can i reduce the success rate of double casting skill of professors ? original success rate Lv 1 : 40% Lv 2 : 50% Lv 3 : 60% Lv 4 : 70% Lv 5 : 80% and make it Lv 1 : 10% Lv 2 : 15% Lv 3 : 20% Lv 4 : 25% Lv 5 : 30% Edited August 17, 2014 by Ginji Quote Link to comment Share on other sites More sharing options...
Jarek Posted August 17, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 143 Reputation: 30 Joined: 12/23/11 Last Seen: March 9 Share Posted August 17, 2014 map/status.c find case SC_DOUBLECAST: val2 = 30+10*val1; // Trigger rate break; replace with case SC_DOUBLECAST: val2 = 5+5*val1; // Trigger rate break; Quote Link to comment Share on other sites More sharing options...
Radian Posted August 17, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted August 17, 2014 (edited) map/status.c find case SC_DOUBLECAST: val2 = 30+10*val1; // Trigger rate break; replace with case SC_DOUBLECAST: val2 = 5+5*val1; // Trigger rate break; val2 = 5+5*val1; // Trigger rate what does this means? is it like this? 5% + 5% chances 10% + 5% chances? Edited August 17, 2014 by Ginji Quote Link to comment Share on other sites More sharing options...
Jarek Posted August 17, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 143 Reputation: 30 Joined: 12/23/11 Last Seen: March 9 Share Posted August 17, 2014 val2 - Chance val1 - Skill Level Quote Link to comment Share on other sites More sharing options...
Radian Posted August 17, 2014 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Author Share Posted August 17, 2014 (edited) val2 - Chance val1 - Skill Level thanks for the information i got a problem while compiling make[1]: Warning: File `status.c' has modification time 2.4e+04 s in the future Edited August 18, 2014 by Ginji Quote Link to comment Share on other sites More sharing options...
Question
Radian
How can i reduce the success rate of double casting skill of professors ?
original success rate
and make it
Edited by GinjiLink 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.