Jump to content
  • 0
ThyroDree

Help on Ankle Snare, Spider Web skill small changes

Question

How can I make Charge Attack, Body Relocation,Back Sliding, Flying Side Kick, High Jump, Shadow Jump fail when they are trapped in Spider Web and Ankle Snare?

 

I tried on body relocation by adding this lines, The anklesnare skill fail when body reloacating works but the spider web skill fail wont work. I can still body reloc.

	// Block skill usage while you have SC_SPIDERWEB AND ANKLESNARE status
		if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLESNARE]))
				break;

Also How can i make the Spider Web works like Ankle snare trap by placing on floors not casting on player.

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0
7 hours ago, ThyroDree said:

How can I make Charge Attack, Body Relocation,Back Sliding, Flying Side Kick, High Jump, Shadow Jump fail when they are trapped in Spider Web and Ankle Snare?

 

I tried on body relocation by adding this lines, The anklesnare skill fail when body reloacating works but the spider web skill fail wont work. I can still body reloc.

// Block skill usage while you have SC_SPIDERWEB AND ANKLESNARE status if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLESNARE])) break;


	// Block skill usage while you have SC_SPIDERWEB AND ANKLESNARE status
		if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLESNARE]))
				break;

Also How can i make the Spider Web works like Ankle snare trap by placing on floors not casting on player.

 

need to place it at the top of the skill

 

and return 0;

 

Share this post


Link to post
Share on other sites
  • 0
4 minutes ago, Naruto said:

 

need to place it at the top of the skill

 

and return 0;

 

What do you mean sir? Can you provide sample, I tried it on body reloc, ankle snare works but spider web you can still use body relocation

 

Share this post


Link to post
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.   Restore formatting

  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.

Loading...

×
×
  • Create New...

Important Information

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