Jump to content
  • 0

Adaptation to Circunstance not working


Agriias

Question


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.01
  • Content Count:  17
  • Reputation:   0
  • Joined:  07/21/20
  • Last Seen:  

I am trying to return to old bard/dancer skills.

did what a user suggested to be done to revert the pre-renew skills in renew according to this topic: 

everything seemed to be going well, until I managed to make the skills work, except the Adptation to Circunstance skill, the skill does not cancel the song when using it, as in the image:

image.png.b6e8c5e455f2ba827ec77f0ff304bc86.png

 

OBS: this problem is caused by the rebalancing of skills in renewal

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  06/11/20
  • Last Seen:  

	case BD_ADAPTATION:
#ifdef RENEWAL
		clif_skill_nodamage(src, bl, skill_id, skill_lv, 1);
		sc_start(src, bl, type, 100, skill_lv, skill_get_time(skill_id, skill_lv));
#else
		if(tsc && tsc->data[SC_DANCING]){
			clif_skill_nodamage(src,bl,skill_id,skill_lv,1);
			status_change_end(bl, SC_DANCING, INVALID_TIMER);
		}
#endif
		break;

then change it to :
 

	case BD_ADAPTATION:

		if(tsc && tsc->data[SC_DANCING]){
			clif_skill_nodamage(src,bl,skill_id,skill_lv,1);
			status_change_end(bl, SC_DANCING, INVALID_TIMER);
		}
		break;

recompile ?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  16
  • Reputation:   0
  • Joined:  06/17/17
  • Last Seen:  

 

On 11/20/2020 at 6:15 AM, Agriias said:

I am trying to return to old bard/dancer skills.

did what a user suggested to be done to revert the pre-renew skills in renew according to this topic: 

everything seemed to be going well, until I managed to make the skills work, except the Adptation to Circunstance skill, the skill does not cancel the song when using it, as in the image:

image.png.b6e8c5e455f2ba827ec77f0ff304bc86.png

 

OBS: this problem is caused by the rebalancing of skills in renewal

can you tell me how to

return to old bard/dancer skills. ?

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