Nero Posted December 1, 2014 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 194 Reputation: 2 Joined: 12/18/11 Last Seen: April 8, 2020 Share Posted December 1, 2014 How to make bragi skill that will not affect wizard aoe skill like meteor storm. Lov storm gust etc Quote Link to comment Share on other sites More sharing options...
Playtester Posted December 2, 2014 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 6 hours ago Share Posted December 2, 2014 I won't give you a full solution as it depends on many things and requires multiple sources to be modified but to give you a pointer check out map/skill.c. For pre-renewal cast you need to check this function: int skill_castfix_sc(struct block_list *bl, int time) For renewal: int skill_vfcastfix(struct block_list *bl, double time, uint16 skill_id, uint16 skill_lv) For aftercast delay: int skill_delayfix (struct block_list *bl, uint16 skill_id, uint16 skill_lv) In those functions if you search for SC_POEMBRAGI you see the cast time reduction from Bragi. What you need to do there is to check the skill_id and only apply the reduction if the skill_id is not equal to one of the skills you want to exclude. It could look like: if(skill_id != WZ_METEOR && skill_id != WZ_STORMGUST && skill_id != WZ_VERMILION) { //Bragi code here } Quote Link to comment Share on other sites More sharing options...
Question
Nero
How to make bragi skill that will not affect wizard aoe skill like meteor storm. Lov storm gust etc
Link to comment
Share on other sites
1 answer 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.