Mael Posted April 23, 2019 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: 14 hours ago Share Posted April 23, 2019 hi rAthena ! Could someone update this guide? It would be very nice to be able to have this modification back, it is very useful! https://github.com/rathena/rathena/wiki/Disable_GM_monster_drops thanks in advance. Quote Link to comment Share on other sites More sharing options...
2 Royr Posted April 23, 2019 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 90 Reputation: 34 Joined: 10/01/18 Last Seen: January 9, 2023 Share Posted April 23, 2019 (edited) 41 minutes ago, Mael said: hi rAthena ! Could someone update this guide? It would be very nice to be able to have this modification back, it is very useful! https://github.com/rathena/rathena/wiki/Disable_GM_monster_drops thanks in advance. in mob.c - pc_isGM(sd) + pc_get_group_level(sd) Try this one: if( (mvp_sd && pc_get_group_level(mvp_sd)) || (sd && pc_get_group_level(sd)) ) { if( mvp_sd && pc_get_group_level(mvp_sd) < battle_config.gm_monsterdrop_lv ) type |= 1; else if( sd && pc_get_group_level(sd) < battle_config.gm_monsterdrop_lv ) type |= 1; } It should work, i tested mine here. Edited April 23, 2019 by Royr 3 Quote Link to comment Share on other sites More sharing options...
0 Mael Posted April 23, 2019 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: 14 hours ago Author Share Posted April 23, 2019 thanks @Royr! works fine now Quote Link to comment Share on other sites More sharing options...
Question
Mael
hi rAthena
!
Could someone update this guide? It would be very nice to be able to have this modification back, it is very useful!
https://github.com/rathena/rathena/wiki/Disable_GM_monster_drops
thanks in advance.
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.