DK77 Posted April 25, 2022 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 61 Reputation: 0 Joined: 06/30/17 Last Seen: July 19, 2024 Share Posted April 25, 2022 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 Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted April 25, 2022 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 16 hours ago Share Posted April 25, 2022 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. 1 Quote Link to comment Share on other sites More sharing options...
0 DK77 Posted April 25, 2022 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 61 Reputation: 0 Joined: 06/30/17 Last Seen: July 19, 2024 Author Share Posted April 25, 2022 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; Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted April 25, 2022 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 16 hours ago Share Posted April 25, 2022 You're perfectly right, I will forward that one as well. Good thinking! Quote Link to comment Share on other sites More sharing options...
0 DK77 Posted April 25, 2022 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 61 Reputation: 0 Joined: 06/30/17 Last Seen: July 19, 2024 Author Share Posted April 25, 2022 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 Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted April 25, 2022 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 16 hours ago Share Posted April 25, 2022 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. Quote Link to comment Share on other sites More sharing options...
0 DK77 Posted April 26, 2022 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 61 Reputation: 0 Joined: 06/30/17 Last Seen: July 19, 2024 Author Share Posted April 26, 2022 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 Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted April 27, 2022 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 894 Reputation: 248 Joined: 01/30/13 Last Seen: 16 hours ago Share Posted April 27, 2022 Just a quick heads up, your original reports are fixed on the emulator now: https://github.com/rathena/rathena/commit/3b9c28aa464b8adb3decb5357725e1f705c8517e Quote Link to comment Share on other sites More sharing options...
0 DK77 Posted April 28, 2022 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 61 Reputation: 0 Joined: 06/30/17 Last Seen: July 19, 2024 Author Share Posted April 28, 2022 nice sir , thanks you @Playtester Quote Link to comment Share on other sites More sharing options...
Question
DK77
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
Link to comment
Share on other sites
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.