Jump to content
  • 0

R>Specific skills fails due to ankle snare and spider web


Brahms

Question


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.02
  • Content Count:  149
  • Reputation:   3
  • Joined:  07/29/16
  • Last Seen:  

Good day everyone just want to request some modification for some specific skills such as , Charge Attack, Body Relocation,Back Sliding, Flying Side Kick, High Jump, Shadow Jump. to be fail to move if locked in place due to skill such as Ankle Snare & Spider Web.. kindly help me with these guys please!.. Thank you so much and have a bless day.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

25 minutes ago, Brahms said:

Good day everyone just want to request some modification for some specific skills such as , Charge Attack, Body Relocation,Back Sliding, Flying Side Kick, High Jump, Shadow Jump. to be fail to move if locked in place due to skill such as Ankle Snare & Spider Web.. kindly help me with these guys please!.. Thank you so much and have a bless day.

Try this..

In skill.cpp add below:

case WM_SATURDAY_NIGHT_FEVER:
	if( !mapdata_flag_vs(mapdata) ) {
		clif_skill_teleportmessage(sd,2); // This skill uses this msg instead of skill fails.
		return true;
	}
break;

this

case TF_BACKSLIDING:
case MO_BODYRELOCATION:
	if( sd && ( sd->sc.data[SC_RG_CCONFINE_S] || sd->sc.data[SC_ANKLESNARE] || sd->sc.data[SC_SPIDERWEB] ) ) {
		clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0);
  		return true;
  	}
break;

just add the Charge attack, Flying side kick, High jump and Shadow jump..

Edited by Rebel
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.02
  • Content Count:  149
  • Reputation:   3
  • Joined:  07/29/16
  • Last Seen:  

2 hours ago, Rebel said:

Try this..

In skill.cpp add below:


case WM_SATURDAY_NIGHT_FEVER:
	if( !mapdata_flag_vs(mapdata) ) {
		clif_skill_teleportmessage(sd,2); // This skill uses this msg instead of skill fails.
		return true;
	}
break;

this


case TF_BACKSLIDING:
case MO_BODYRELOCATION:
	if( sd && ( sd->sc.data[SC_RG_CCONFINE_S] || sd->sc.data[SC_ANKLESNARE] || sd->sc.data[SC_SPIDERWEB] ) ) {
		clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0);
  		return true;
  	}
break;

just add the Charge attack, Flying side kick, High jump and Shadow jump..

Thank you so much bro. I will test these. If theres any problem can i contact you for support? ?.. Sorry to bother you. Thanks again. 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   2
  • Joined:  10/04/19
  • Last Seen:  

On 10/2/2018 at 1:27 PM, Rebel said:

Try this..

In skill.cpp add below:


case WM_SATURDAY_NIGHT_FEVER:
	if( !mapdata_flag_vs(mapdata) ) {
		clif_skill_teleportmessage(sd,2); // This skill uses this msg instead of skill fails.
		return true;
	}
break;

this


case TF_BACKSLIDING:
case MO_BODYRELOCATION:
	if( sd && ( sd->sc.data[SC_RG_CCONFINE_S] || sd->sc.data[SC_ANKLESNARE] || sd->sc.data[SC_SPIDERWEB] ) ) {
		clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0);
  		return true;
  	}
break;

just add the Charge attack, Flying side kick, High jump and Shadow jump..

Is this still working on Latest rAthena version? Thanks if you will answer! 

 

There's an error. @Brahms, anyone can help me with this?

image.png.d268998c648e67f68acd507886793917.png

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  737
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

2 hours ago, DevKira said:

There's an error. @Brahms, anyone can help me with this?

image.png.d268998c648e67f68acd507886793917.png

change to

EFST_RG_RG_CCONFINE_S
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   2
  • Joined:  10/04/19
  • Last Seen:  

1 hour ago, Bringer said:

change to


EFST_RG_RG_CCONFINE_S

Ankle Snare does not block Body Relocation, how to fix this?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  737
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

15 hours ago, DevKira said:

Ankle Snare does not block Body Relocation, how to fix this?

it's working fine on my server

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   2
  • Joined:  10/04/19
  • Last Seen:  

3 minutes ago, Bringer said:

it's working fine on my server

it's not working to me. i put anklesnare on the ground and then champion can still use BODY RELOC. but the SpiderWeb works fine.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  737
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

6 minutes ago, DevKira said:

it's not working to me. i put anklesnare on the ground and then champion can still use BODY RELOC. but the SpiderWeb works fine.

did you change to

HT_ANKLESNARE

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   2
  • Joined:  10/04/19
  • Last Seen:  

2 minutes ago, Bringer said:

did you change to


HT_ANKLESNARE

 

yes i did.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   23
  • Joined:  01/06/13
  • Last Seen:  

On 10/15/2019 at 4:28 PM, DevKira said:

it's not working to me. i put anklesnare on the ground and then champion can still use BODY RELOC. but the SpiderWeb works fine.

use SC_ANKLE instead of HT_ANKLESNARE

Edited by Zeiyan
  • Upvote 1
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...