Storm gust freeze 3 hit

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Guest
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

 
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 

 
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

 
Last edited:
Back
Top