emci Posted October 11, 2016 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 11/07/12 Last Seen: June 7, 2021 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 Humble_Bee Posted June 13, 2021 Group: Members Topic Count: 54 Topics Per Day: 0.03 Content Count: 112 Reputation: 9 Joined: 09/22/19 Last Seen: July 24, 2022 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. 2 Quote Link to comment Share on other sites More sharing options...
-1 Emistry Posted October 12, 2016 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Yesterday at 05:32 PM Share Posted October 12, 2016 remove it from db/re/mob_db.txt Quote Link to comment Share on other sites More sharing options...
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>
Link to comment
Share on other sites
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.