trickzjen23 Posted June 18, 2014 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 53 Reputation: 0 Joined: 11/25/11 Last Seen: June 19, 2024 Share Posted June 18, 2014 I was looking in skill.c and status.c but I'm out of luck. I would like to make some changes for impositio skill of Priest; I would like to make it +50 atk instead for maximum level. Thank you in advance! Quote Link to comment Share on other sites More sharing options...
Evelynn Posted June 18, 2014 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 93 Reputation: 14 Joined: 12/12/11 Last Seen: October 25, 2015 Share Posted June 18, 2014 Status.c case SC_IMPOSITIO: val2 = 5*val1; // Atk increase break; to case SC_IMPOSITIO: val2 = 50; // Atk increase break; Quote Link to comment Share on other sites More sharing options...
trickzjen23 Posted June 18, 2014 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 53 Reputation: 0 Joined: 11/25/11 Last Seen: June 19, 2024 Author Share Posted June 18, 2014 (edited) Status.c case SC_IMPOSITIO: val2 = 5*val1; // Atk increase break; to case SC_IMPOSITIO: val2 = 50; // Atk increase break; Thank you, what will happen for level 1, 2 ,3 and 4 effect? isn't this going to change everything to + 50 attack? nevermind, i see how the formula works now. case SC_IMPOSITIO: //val2 = 5*val1; //watk increase if(val1 == 5) val2 = 50; else val2 = 5*val1; //watk increase break; Edited June 18, 2014 by aerolite Quote Link to comment Share on other sites More sharing options...
Evelynn Posted June 18, 2014 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 93 Reputation: 14 Joined: 12/12/11 Last Seen: October 25, 2015 Share Posted June 18, 2014 Thank you, what will happen for level 1, 2 ,3 and 4 effect? isn't this going to change everything to + 50 attack? Regardless of what lvl it is, it will always and only increase your attack by 50. Quote Link to comment Share on other sites More sharing options...
Question
trickzjen23
I was looking in skill.c and status.c but I'm out of luck. I would like to make some changes for impositio skill of Priest; I would like to make it +50 atk instead for maximum level.
Thank you in advance!
Link to comment
Share on other sites
3 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.