Jump to content
  • 0

[WTA] Stone cursed behaviour


Question

Posted

rAthena Hash: 933a6ed

Client Date: 20150411

Server Mode: PRE-RE

Description of Issue:

Hai guys , i found out the stone cursed behaviour quite strange . Even with evil druid card, we still having mini stone curse . Here some video i provide 


youtube link
 

8 answers to this question

Recommended Posts

  • 0
Posted

It's a small error in the rework on the Stone SC.

In status.cpp this part:

		case SC_STONE:
		case SC_FREEZE:
			// Undead are immune to Freeze/Stone
			if (undead_flag && !(flag&SCSTART_NOAVOID))
				return 0;
			break;

Needs to be changes to:

		case SC_STONE:
		case SC_STONEWAIT:
		case SC_FREEZE:
			// Undead are immune to Freeze/Stone
			if (undead_flag && !(flag&SCSTART_NOAVOID))
				return 0;
			break;

I'll forward this to Aleos so he can fix this directly on the emulator.

  • Upvote 1
  • 0
Posted

Thanks you @Playtester , now its working with undead card . what about resist stone with mdef and luk . do i need to add SC_STONEWAIT ? 

 

		case SC_STONE:
#ifndef RENEWAL
			sc_def = status->mdef*100;
			sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10;
			tick_def = 0; // No duration reduction
#else
			sc_def = status->mdef * 100 - levelAdv;
			tick_def2 = -3000;
#endif
			break;

to 
 

		case SC_STONE:
		case SC_STONEWAIT:
#ifndef RENEWAL
			sc_def = status->mdef*100;
			sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10;
			tick_def = 0; // No duration reduction
#else
			sc_def = status->mdef * 100 - levelAdv;
			tick_def2 = -3000;
#endif
			break;

 

  • 0
Posted

yeah , thanks sir , you save my day . its been 6 hours im fixing this . im found out during testing status resist on luk and mdef . then i testing with evil druid , result still same . 
. You may closed this topic 
 

  • 0
Posted

There's one more thing, right now the transition from SC_STONEWAIT to SC_STONE can also be resisted. That also needs to be fixed by making it unavoidable.

We are also checking an issue in renewal right now. I recommend you just wait for the next update though otherwise you'll run into merge conflicts.

  • 0
Posted

alright sir . what about player under devotion getting stone cursed . mine behaviour its can break with normal hit/any damage skill while u are under devotion . if no mistake , might need status recovery to remove stone cursed while u under devotion paladin .

 

Ill provide some video regarding stone cursed behaviour with devotion as per mention at my previous reply . 
Youtube Link

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