emci Posted October 11, 2016 Posted October 11, 2016 Hi Guys, Is there any quick solution to disable MVP slaves/ summons to stop dropping items? <Cause it can be abused by just farming from them and not killing the mvp> Quote
0 Humble_Bee Posted June 13, 2021 Posted June 13, 2021 Note: I know this question is old, but I don't see the answer on the boards, and my version of rAthena doesn't have a quick solution, so I made one, and I imagine it will help people. You can go into mob.cpp and find the section that talks about mob drops and add in slave mobs as a section there. Mine looked like this: if( !(type&1) && !map_getmapflag(m, MF_NOMOBLOOT) && !md->state.rebirth && ( !md->special_state.ai || //Non special mob battle_config.alchemist_summon_reward == 2 || //All summoned give drops (md->special_state.ai==AI_SPHERE && battle_config.alchemist_summon_reward == 1) //Marine Sphere Drops items. ) ) And I changed the top line to look like this: if( !(type&1) && !map_getmapflag(m, MF_NOMOBLOOT) && !md->state.rebirth && !md->master_id && ( My slave mobs are no longer giving drops. 2 Quote
Question
emci
Hi Guys,
Is there any quick solution to disable MVP slaves/ summons to stop dropping items?
<Cause it can be abused by just farming from them and not killing the mvp>
2 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.