emci Posted October 11, 2016 Share 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 Link to comment Share on other sites More sharing options...
0 Emistry Posted October 12, 2016 Share Posted October 12, 2016 remove it from db/re/mob_db.txt Quote Link to comment Share on other sites More sharing options...
0 Humble_Bee Posted June 13, 2021 Share 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. 1 Quote Link to comment Share on other sites More sharing options...
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>
Link to comment
Share on other sites