Can't disable Renewal EXP/DROPs

Brozan

New member
Messages
6
Points
0
I have set up my server but I can't disable Renewal EXP/Drop level penalties. I have commented out both lines in /src/config/renewal.h, recompiled the server many times, but when I type @mobinfo, it seems the exp and drop penalties are still in effect.

What am I doing wrong? Could it just be the case that @mobinfo is giving me a false reading?

Thanks in advance.

 
Hi,

Try commenting this lines
#define RENEWAL
#define RENEWAL_CAST
#define RENEWAL_DROP
#define RENEWAL_EXP
#define RENEWAL_LVDMG
#define RENEWAL_EDP
#define RENEWAL_ASPD
 

 
Perfect, that worked! I figured you could pick and choose which features were available, but I guess not.

Thank you!

 
Actually, you can disable one feature.

You might have some settings like this enabled.

conf/battle/gm.conf

Code:
// requires RENEWAL_DROP to be enabled (src/map/config/renewal.h)// modifies @mobinfo to display the users' real drop rate as per renewal_drop formula// modifies @iteminfo to not display the minimum item drop rate (since it can't tell the mob level)atcommand_mobinfo_type: 0
 
Dastgir, that was the case. @mobinfo was giving me a false reading and changing that line solved the issue. Thank you!

 
Back
Top