Jump to content
  • 0

Body Relocation | Ankle Snare and Spider Web


Ukiram

Question


  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.02
  • Content Count:  291
  • Reputation:   26
  • Joined:  12/16/17
  • Last Seen:  

Hi, 
Is there anyone know how to fix bugs on Body Relocation, because Body Relocation can escaped on Spider Web and Ankle Snare. Is there anyone know how to fix this? 

Thank you if you will answer! ❤️ 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 4

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  351
  • Reputation:   263
  • Joined:  09/08/13
  • Last Seen:  

Hello! You have already asked about "Body Relocation + Spider Web" and got the solution: 

https://rathena.org/board/topic/118958-block-body-relocation-while-spider-web/

But it is without checking the status of "Ankle Snare".

The final solution:

Open ../src/map/skill.cpp and in the function skill_castend_pos2 after:

	case MO_BODYRELOCATION:
		if (unit_movepos(src, x, y, 2, 1)) {

add:

			if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLE]))
				break;

 

  • Upvote 7
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.02
  • Content Count:  291
  • Reputation:   26
  • Joined:  12/16/17
  • Last Seen:  

9 hours ago, Functor said:

Hello! You have already asked about "Body Relocation + Spider Web" and got the solution: 

https://rathena.org/board/topic/118958-block-body-relocation-while-spider-web/

But it is without checking the status of "Ankle Snare".

The final solution:

Open ../src/map/skill.cpp and in the function skill_castend_pos2 after:


	case MO_BODYRELOCATION:
		if (unit_movepos(src, x, y, 2, 1)) {

add:


			if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLE]))
				break;

 

Thank you, very much appreciated.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  08/08/13
  • Last Seen:  

On 11/4/2019 at 6:00 AM, Functor said:

Hello! You have already asked about "Body Relocation + Spider Web" and got the solution: 

https://rathena.org/board/topic/118958-block-body-relocation-while-spider-web/

But it is without checking the status of "Ankle Snare".

The final solution:

Open ../src/map/skill.cpp and in the function skill_castend_pos2 after:

	case MO_BODYRELOCATION:
		if (unit_movepos(src, x, y, 2, 1)) {

add:

			if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLE]))
				break;

 

THANK YOU!!

 

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...