Jump to content
  • 0

Storm gust edit


Mike T

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   1
  • Joined:  04/08/12
  • Last Seen:  

Is it possible to remove the 300% freeze chance of the 3rd hit of Storm gust? So that it won't freeze everyone on the 3rd hit.

Thannks~!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

@skill.c

do the manipulation here

 case WZ_STORMGUST:[/color]

/**
 * Storm Gust counter was dropped in renewal
 **/
#ifdef RENEWAL
	sc_start(bl,SC_FREEZE,65-(5*skilllv),skilllv,skill_get_time2(skillid,skilllv));
#else
	 //Tharis pointed out that this is normal freeze chance with a base of 300%
	if(tsc->sg_counter >= 3 &&
		sc_start(bl,SC_FREEZE,300,skilllv,skill_get_time2(skillid,skilllv)))
		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;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   1
  • Joined:  04/08/12
  • Last Seen:  

Thanks! just what I needed!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...