Guest Posted December 12, 2019 Hi, I would like to know if it's possible to set Storm gust to freeze only in the 3 hit? Does anybody know where can I do this? Thanks in advance Quote Share this post Link to post Share on other sites
0 Naruto 38 Posted December 12, 2019 Yeah but forgive me for not being familiar with pre re and renewal differences case WZ_STORMGUST: /** * Storm Gust counter was dropped in renewal **/ #ifdef RENEWAL sc_start(src,bl,SC_FREEZE,65-(5*skill_lv),skill_lv,skill->get_time2(skill_id,skill_lv)); #else //On third hit, there is a 150% to freeze the target if(tsc->sg_counter >= 3 && sc_start(src,bl,SC_FREEZE,150,skill_lv,skill->get_time2(skill_id,skill_lv))) tsc->sg_counter = 0; /** * being it only resets on success it'd keep stacking and eventually overflowing on mvps, so we reset at a high value **/ else if( tsc->sg_counter > 250 ) tsc->sg_counter = 0; #endif break; looks like pre re servers have that feature and you just need to delete everything above that #else including the #else Quote Share this post Link to post Share on other sites
0 Guest Posted December 14, 2019 (edited) Hi, I tried to put // put didn't make any change apparently I'm having this weird issue with storm gust, monster are freezing but keep attacking and walking https://streamable.com/7fuf9 Edited December 14, 2019 by Guest Quote Share this post Link to post Share on other sites
Hi,
I would like to know if it's possible to set Storm gust to freeze only in the 3 hit? Does anybody know where can I do this?
Thanks in advance
Share this post
Link to post
Share on other sites