Marured Posted April 23, 2023 Posted April 23, 2023 How do I allow items to be used during SC_BERSERK? Quote
0 joecalis Posted May 1, 2023 Posted May 1, 2023 (edited) If you're on the latest version of Rathena, you can go to db/pre-re or db/re folder and open the status.yml Find: - Status: Berserk Icon: EFST_BERSERK DurationLookup: LK_BERSERK States: NoCast: true NoChat: true NoEquipItem: true NoUnEquipItem: true NoConsumeItem: true Delete this: NoConsumeItem: true if you're on the older versions and don't have this file, goto src/map folder and open pc.cpp Find: if( sd->md->sc.data[SC_BERSERK] ) return false; Delete it, then find this: if (sd->sc.count && ( sd->sc.data[SC_BERSERK] || sd->sc.data[SC_SATURDAYNIGHTFEVER] || Change it to this: if (sd->sc.count && ( sd->sc.data[SC_SATURDAYNIGHTFEVER] || Edited May 1, 2023 by joecalis Quote
Question
Marured
How do I allow items to be used during SC_BERSERK?
1 answer 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.