Jump to content
  • 0

Adaptation to Circunstance not working


Question

Posted

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

2 answers to this question

Recommended Posts

  • 0
Posted
	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 ?

  • 0
Posted

 

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...