Jump to content
  • 0
Sign in to follow this  
Guest

Storm gust freeze 3 hit

Question

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

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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 

Share this post


Link to post
Share on other sites
  • 0
Guest

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 by Guest

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.